下载本文示例代码
综述:有许多朋友对网站提供繁、简两种版本感到很困惑,是怎么实现的呢?这也是时下众多PHP书籍中被漏掉的一个很重要的知识点。笔者搜集整理并根据自己的开发经验将一些重点与疑点罗列出来与大家共享! 如何应用繁体中文转换为简体中文的PHP函数? 我们定义一个big5togb的函数来实现这个转换:
function big5togb($code) { //参数$code是big5码的字符串include "data_big5.php"; //包含big5数据的文件$output=""; $length=strlen($code); //取得字符串长度$code=strtok($code,""); $idx=0; while ($idx < $length) { $tmpStr=$code[$idx].$code[$idx 1]; if (isbig5($tmpStr)) //判断是否big5码{ ……//如果是big5码则进行转换后输出} else { $output.= $code[$idx]; //如果不是big5码则直接输出} $idx ; } return ($output); } 如何应用简体中文转换为繁体中文的PHP函数? 如何用PHP将简体中文转换为繁体中文? 我们定义一个big5togb的函数来实现这个转换:
function gbtobig5($code) { include "data_gb.php"; //包含有gb码的数据文件 $output=""; $length=strlen($code); $code=strtok($code,""); $idx=0; while ($idx < $length) { $tmpStr=$code[$idx].$code[$idx 1]; if (isgb($tmpStr)) //判断是否gb码{ ……//如果是gb码转换后输出 } else { $output.= $code[$idx]; //不是gb码则直接输出} $idx ; } return ($output); } 共4页。 1 2 3 4 :
综述:有许多朋友对网站提供繁、简两种版本感到很困惑,是怎么实现的呢?这也是时下众多PHP书籍中被漏掉的一个很重要的知识点。笔者搜集整理并根据自己的开发经验将一些重点与疑点罗列出来与大家共享! 如何应用繁体中文转换为简体中文的PHP函数? 我们定义一个big5togb的函数来实现这个转换:
function big5togb($code) { //参数$code是big5码的字符串include "data_big5.php"; //包含big5数据的文件$output=""; $length=strlen($code); //取得字符串长度$code=strtok($code,""); $idx=0; while ($idx < $length) { $tmpStr=$code[$idx].$code[$idx 1]; if (isbig5($tmpStr)) //判断是否big5码{ ……//如果是big5码则进行转换后输出} else { $output.= $code[$idx]; //如果不是big5码则直接输出} $idx ; } return ($output); } 如何应用简体中文转换为繁体中文的PHP函数? 如何用PHP将简体中文转换为繁体中文? 我们定义一个big5togb的函数来实现这个转换:
function gbtobig5($code) { include "data_gb.php"; //包含有gb码的数据文件 $output=""; $length=strlen($code); $code=strtok($code,""); $idx=0; while ($idx < $length) { $tmpStr=$code[$idx].$code[$idx 1]; if (isgb($tmpStr)) //判断是否gb码{ ……//如果是gb码转换后输出 } else { $output.= $code[$idx]; //不是gb码则直接输出} $idx ; } return ($output); } 共4页。 1 2 3 4 :
下载本文示例代码
PHP中字体应用释疑PHP中字体应用释疑PHP中字体应用释疑PHP中字体应用释疑PHP中字体应用释疑PHP中字体应用释疑PHP中字体应用释疑PHP中字体应用释疑PHP中字体应用释疑PHP中字体应用释疑PHP中字体应用释疑PHP中字体应用释疑PHP中字体应用释疑PHP中字体应用释疑PHP中字体应用释疑
阅读(120) | 评论(0) | 转发(0) |