php把汉字转换成拼音代码
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-18 09:54:05 浏览: 评论:0
下面有三个函数对应的是取汉字码,与转换成相对就的拼音,我们的实例是简单的,只举了a开头的汉字转换拼音的实例代码.
- $piny = array(
- 'a'=>-20319,
- 'ai'=>-20317,
- 'an'=>-20304,
- 'ang'=>-20295
- );
- echo getChineseSpells('中国WEB第一站 www.phpfensi.com');
- //取汉字所有拼音
- function getChineseSpells($chinese, $delimiter = ' ', $first=0)
- {
- $result = array();
- for ($i=0; $i<strlen($chinese); $i++) {
- $p = ord(substr($chinese,$i,1));
- if ($p>160) {
- $q = ord(substr($chinese,++$i,1));
- $p = $p*256 + $q - 65536;
- }
- $result[] = getChineseSpell($p);
- if ($first) {
- return $result[0];
- }
- }
- return implode($delimiter, $result);
- }
- //取一个汉字码对应的拼音
- function getChineseSpell ($num, $blank = '') {
- if ( $num>0 && $num<160 ) {
- return chr($num);
- } elseif ($num<-20319||$num>-10247) {
- return $blank;
- } else {
- foreach (chineseSpellList as $spell => $code) {
- if ($code > $num) break;
- $result = $spell;
- }
- return $result;
- }
- }
- //功能,取汉字第一个拼音
- function getFirstSpell($chinese, $length = 0) {
- $spell =getChineseSpells($chinese, ' ', 1);
- if ($length) {
- $spell = substr($spell, 0, $length);
- }
- return $spell;
- }
Tags: php 汉字转换 拼音代码
相关文章
- ·PHP校验ISBN码的函数(2013-11-11)
- ·PHP不缓存数据头(2013-11-11)
- ·PHP采集程序中常用的函数(2013-11-11)
- ·PHP多重判断删除文件函数(2013-11-11)
- ·php中文汉字截取函数(2013-11-12)
- ·如何用php创建与删除多级目录函数(2013-11-14)
- ·什么函数能够把文件从一个目录下转移到另外一个目录下?(2013-11-27)
- ·php_admin_value(php_admin_flag)和php_value(php_flag)(2013-11-27)
- ·使用PHP重新实现PHP脚本引擎内置函数(2013-11-27)
- ·计算一个程序的执行时间的函数(2013-11-27)
- ·php curl_init函数用法(2013-11-28)
- ·php md5 与md5_file区别详细说明(2013-11-28)
- ·php session_cache_limiter session_cache_expire等函数(2013-11-29)
- ·php var_dump简单测试(2013-11-29)
- ·php file_exists无效解决办法(2013-11-29)
- ·强大的php检查文件类型(2013-11-30)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)