PHP Classes

Chinese Master: Detect and convert text in Chinese

Recommend this page to a friend!
  Info   View files Documentation   View files View files (4)   DownloadInstall with Composer Download .zip   Reputation   Support forum (1)   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 68 All time: 10,267 This week: 83Up
Version License PHP version Categories
chinese-master 1.0.3Custom (specified...5Localization, PHP 5, Text processing
Description 

Author

This package is specific mainly for applications used in China China .

This class can detect and convert text in Chinese.

It can take a text string and detects if it is in simplified Chinese or traditional Chinese.

The class can also convert text between simplified and traditional Chinese encodings.

Innovation Award
PHP Programming Innovation award nominee
June 2017
Number 6
Chinese is a language that can be represented in either traditional and simplified formats.

This class can detect when a text string is represented in either format and convert the text between each of the format.

Manuel Lemos
Picture of Peter Kahl
  Performance   Level  
Name: Peter Kahl <contact>
Classes: 37 packages by
Country: United Kingdom
Age: ???
All time rank: 41721 in United Kingdom
Week rank: 91 Up3 in United Kingdom Up
Innovation award
Innovation award
Nominee: 23x

Winner: 2x

Documentation

Chinese Master

Downloads Download per Month License

Chinese traditional/simplified conversion; traditional/simplified detection.

Usage

use peterkahl\ChineseMaster\ChineseMaster;

$chm = new ChineseMaster;

/
 * Does string include (1 or more) characters of traditional Chinese script?
 *
 */
$isTraditional = ($chm->isTraditional('?')) ? true : false;  # false

$isTraditional = ($chm->isTraditional('?')) ? true : false;  # true

$isTraditional = ($chm->isTraditional('??')) ? true : false; # true

/
 * Convert text in traditional script to simplified.
 *
 */
echo $chm->trad2simp('???'); # ???

/
 * Convert text in simplified script to traditional.
 *
 */
echo $chm->simp2trad('???'); # ???


  Files folder image Files  
File Role Description
Files folder imagesrc (1 file)
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file LICENSE Lic. License text
Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files  /  src  
File Role Description
  Plain text file ChineseMaster.php Class Class source

 Version Control Unique User Downloads Download Rankings  
 100%
Total:68
This week:0
All time:10,267
This week:83Up