PHP Classes
elePHPant
Icontem

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   Blog    
Last Updated Ratings Unique User Downloads Download Rankings
2020-03-30 (17 hours ago) RSS 2.0 feedNot yet rated by the usersTotal: 49 This week: 2All time: 9,731 This week: 224Up
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
  Performance   Level  
Name: Peter Kahl <contact>
Classes: 37 packages by
Country: United Kingdom United Kingdom
Innovation award
Innovation award
Nominee: 23x

Winner: 2x

 

Details

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:49
This week:2
All time:9,731
This week:224Up