> 백엔드 개발 > PHP 튜토리얼 > php 汉字转成拼音代码_PHP教程

php 汉字转成拼音代码_PHP教程

WBOY
풀어 주다: 2016-07-20 11:06:28
원래의
1056명이 탐색했습니다.

php 汉字转成拼音代码
function utf82gb($utfstr){ // UTF-8汉字转GBK汉字
 if(function_exists('iconv')){ return iconv('utf-8','gbk',$utfstr); }
 global $UC2GBTABLE;
 $okstr = "";
 if(trim($utfstr)=="") return $utfstr;
 if(empty($UC2GBTABLE)){
  $filename = dirname(__FILE__) . "/gb2312-utf8.table";
  $fp = fopen($filename,"r");
  while($l = fgets($fp,15))
  { $UC2GBTABLE[hexdec(substr($l, 7, 6))] = hexdec(substr($l, 0, 6));}
  fclose($fp);
 }
 $okstr = "";
 $ulen = strlen($utfstr);
 for($i=0;$i {
  $c = $utfstr[$i];
  $cb = decbin(ord($utfstr[$i]));
  if(strlen($cb)==8){
   $csize = strpos(decbin(ord($cb)),"0");
   for($j=0;$j     $i++; $c .= $utfstr[$i];
   }
   $c = utf82u($c);
   if(isset($UC2GBTABLE[$c])){
    $c = dechex($UC2GBTABLE[$c]+0x8080);
    $okstr .= chr(hexdec($c[0].$c[1])).chr(hexdec($c[2].$c[3]));
   }
   else
   { $okstr .= "".$c.";";}
  }
  else $okstr .= $c;
 }
 $okstr = trim($okstr);
 return $okstr;
}

function SpGetPinyin($str,$ishead=0,$isclose=1){ // GBK汉字转拼音
 global $pinyins;
 $restr = "";
 $str = trim($str);
 $slen = strlen($str);
 if($slen if(count($pinyins)==0){
  $fp = fopen(dirname(__FILE__) . '/pinyin.db',"r");
  while(!feof($fp)){
   $line = trim(fgets($fp));
   $pinyins[$line[0].$line[1]] = substr($line,3,strlen($line)-3);
  }
  fclose($fp);
 }
 for($i=0;$i  if(ord($str[$i])>0x80)
  {
   $c = $str[$i].$str[$i+1];
   $i++;
   if(isset($pinyins[$c])){
    if($ishead==0) $restr .= $pinyins[$c];
    else $restr .= $pinyins[$c][0];
   }else $restr .= "_";
  }else if( eregi("[a-z0-9]",$str[$i]) ){ $restr .= $str[$i]; }
  else{ $restr .= "_";  }
 }
 if($isclose==0) unset($pinyins);
 return $restr;
}

function getPinyin($string){ // UTF-8汉字转拼音
 return SpGetPinyin(utf82gb($string));
}

echo getPinyin("中国WEB第一站");
?>


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/445029.htmlTechArticlephp 汉字转成拼音代码 ?php function utf82gb($utfstr){ // UTF-8汉字转GBK汉字 if(function_exists('iconv')){ return iconv('utf-8','gbk',$utfstr); } global $UC2GBTABLE; $ok...
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿