>  기사  >  백엔드 개발  >  PHP에서 한자를 위치 코드로 변환하는 방법

PHP에서 한자를 위치 코드로 변환하는 방법

藏色散人
藏色散人원래의
2020-10-05 09:34:082317검색

PHP에서 중국어 문자를 위치 코드로 변환하는 방법: 먼저 PHP 샘플 파일을 만든 다음 "sprintf("%02d%02d",ord($t1[0])-160,ord($t1[1] )-160 );" 메소드를 사용하여 한자를 위치 코드로 변환할 수 있습니다.

PHP에서 한자를 위치 코드로 변환하는 방법

추천: "PHP 동영상 튜토리얼"

PHP에서 한자를 위치 코드로 변환하는 소스 코드 응용 사례 분석

PHP에서 한자를 위치 코드로 변환하는 방법 이 문제는 항상 가장 많은 고민을 안겨주었습니다 프로그래머 여러분, 소스 코드 예제가 모든 사람에게 큰 도움이 될 것이라고 믿습니다.

코드는 다음과 같습니다.

<?php 
global $PHP_SELF; 
//echo $PHP_SELF; 
$t1=$_POST[&#39;textfield1&#39;]; 
$t2=$_POST[&#39;textfield2&#39;]; 
$t3=$_POST[&#39;textfield3&#39;]; 
$t4=$_POST[&#39;textfield4&#39;]; 
// 汉字--区位码 
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; 
} 
?> 
<!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>无标题文档</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">汉字区位码查询系统</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=" 转 换 " /> 
</label> 
<label> 
<input name="textfield2" type="text" value="<?=$t2?>" /> 
</label> 
</form> 
<br /> 
<form id="form2" name="form2" method="post" action="<?=$PHP_SELF ?>"> 
<label>输入区位码 
<input name="textfield3" type="text" value="<?=$t3?>" /> 
</label> 
<input type="submit" name="Submit2" value=" 转 换 " /> 
<input name="textfield4" type="text" value="<?=$t4?>" /> 
</form> 
</td> 
</tr> 
</table> 
</body> 
</html>

위 내용은 PHP에서 한자를 위치 코드로 변환하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.