Home > Article > Backend Development > Another quick one_PHP tutorial
/**
Generation of Pinyin code table:
Start the input method generator, load the pinyin input method of window in the reverse conversion tab and save it as a file
This file (winpy.txt) is for later use.
The following code loads the Pinyin code table file (text) into the array $pymb. The structure is: (Pinyin, (Chinese characters...))
The code table conversion takes a long time and should be converted Save it later
*/
$filename = "pymb.txt";
if(file_exists($filename)) {
$fp = fopen($filename,"r");
$pymb = unserialize(fread($fp,filesize($filename)));
fclose($fp);
}else {
$filename = "winpy.txt";
$fp = fopen($filename,"r");
$old = "";
$ar = array();
$pymb = array();
while(! feof($fp)) {
$buffer = fgets($fp,128);
sscanf($buffer,"%2s%s",$ch,$py);
if($ch >= "啊" && ord($py) < 128) {
$pymb[$ch] = $py;
}
}
fclose($fp);
$fp = fopen("pymb.txt","w");
fwrite($fp,serialize($pymb)."
");
fclose($fp);
}
?>
应用例,给文字加上拼音
/**
Application example, add pinyin to text. For simplicity, assume all in Chinese
*/
function get_py($text) {
global $pymb;
$i = 0;
$n = strlen($text);
$ar = array();