Home  >  Article  >  Backend Development  >  PHP中实现汉字转区位码应用源码实例解析_PHP

PHP中实现汉字转区位码应用源码实例解析_PHP

WBOY
WBOYOriginal
2016-06-01 12:18:351006browse
复制代码 代码如下:
global $PHP_SELF;
//echo $PHP_SELF;
$t1=$_POST['textfield1'];
$t2=$_POST['textfield2'];
$t3=$_POST['textfield3'];
$t4=$_POST['textfield4'];
// 汉字--区位码
if($t1!=""){
$t2= sprintf("%02d%02d",ord($t1[0])-160,ord($t1[1])-160);
//echo $t2;
}
// 区位码--汉字
if($t3!=""){
$t4 = chr(substr($t3,0,2)+160).chr(substr($t3,2,2)+160);
//echo $t4;
}
?>
BR>"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn