溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

php漢字轉(zhuǎn)區(qū)位碼的方法

發(fā)布時(shí)間:2020-10-09 15:02:42 來源:億速云 閱讀:198 作者:小新 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)php漢字轉(zhuǎn)區(qū)位碼的方法,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

php漢字轉(zhuǎn)區(qū)位碼的方法:首先創(chuàng)建一個(gè)PHP示例文件;然后通過“sprintf("%02d%02d",ord($t1[0])-160,ord($t1[1])-160);”方法實(shí)現(xiàn)漢字轉(zhuǎn)區(qū)位碼即可。

PHP中實(shí)現(xiàn)漢字轉(zhuǎn)區(qū)位碼應(yīng)用源碼實(shí)例解析

PHP里如何實(shí)現(xiàn)漢字轉(zhuǎn)區(qū)位碼這個(gè)問題一直困擾這大多程序員,那么下面這個(gè)源碼實(shí)例相信能給大家?guī)砗艽蟮膸椭?/p>

代碼如下:

<?php 
global $PHP_SELF; 
//echo $PHP_SELF; 
$t1=$_POST['textfield1']; 
$t2=$_POST['textfield2']; 
$t3=$_POST['textfield3']; 
$t4=$_POST['textfield4']; 
// 漢字--區(qū)位碼 
if($t1!=""){ 
$t2= sprintf("%02d%02d",ord($t1[0])-160,ord($t1[1])-160); 
//echo $t2; 
} 
// 區(qū)位碼--漢字 
if($t3!=""){ 
$t4 = chr(substr($t3,0,2)+160).chr(substr($t3,2,2)+160); 
//echo $t4; 
} 
?> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
<title>無標(biāo)題文檔</title> 
<style type="text/css"> 
<!-- 
.STYLE1 {font-size: 18px} 
--> 
</style> 
</head> 
<body> 
<table width="528" height="146" border="1" 
align="center" cellpadding="0" cellspacing="0"> 
<tr> 
<td width="524" height="50"><div align="center" 
class="STYLE1">漢字區(qū)位碼查詢系統(tǒng)</div></td> 
</tr> 
<tr> 
<td><form id="form1" name="form1" method="post" action= 
"<?=$PHP_SELF ?>"> 
<label>輸入漢字 
<input name="textfield1" type="text" value="<?=$t1?>" /> 
</label> 
<label> 
<input type="submit" name="Submit" value=" 轉(zhuǎn) 換 " /> 
</label> 
<label> 
<input name="textfield2" type="text" value="<?=$t2?>" /> 
</label> 
</form> 
<br /> 
<form id="form2" name="form2" method="post" action="<?=$PHP_SELF ?>"> 
<label>輸入?yún)^(qū)位碼 
<input name="textfield3" type="text" value="<?=$t3?>" /> 
</label> 
<input type="submit" name="Submit2" value=" 轉(zhuǎn) 換 " /> 
<input name="textfield4" type="text" value="<?=$t4?>" /> 
</form> 
</td> 
</tr> 
</table> 
</body> 
</html>

關(guān)于php漢字轉(zhuǎn)區(qū)位碼的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI