Home > Backend Development > PHP Tutorial > PHP function to convert general characters and hexadecimal characters to and from each other_PHP tutorial

PHP function to convert general characters and hexadecimal characters to and from each other_PHP tutorial

WBOY
Release: 2016-07-13 17:24:05
Original
994 people have browsed it


function SingleDecToHex($dec)
{
$tmp="";
$dec=$dec%16;
if($decreturn $tmp.$dec;
$arr=array("a","b","c","d","e","f");
return $tmp.$arr[$dec-10];
}
function SingleHexToDec($hex)
{
$v=Ord($hex);
if(47return $v-48;
if(96return $v-87;
}
function SetToHexString($str)
{
if(!$str)return false;
$tmp="";
for($i=0;$i{
$ord=Ord($str[$i]);
$tmp.=SingleDecToHex(($ord-$ord%16)/16);
$tmp.=SingleDecToHex($ord%16);
}
return $tmp;
}
function UnsetFromHexString($str)
{
if(!$str)return false;
$tmp="";
for($i=0;$i{
$tmp.=chr(SingleHexToDec(substr($str,$i,1))*16+SingleHexToDec(substr($str,$i+1,1)));
}
return $tmp;
}
?>

SetToHexString("大家好")==SetToHexString("大家好")?>


UnsetFromHexString(SetToHexString("大家好"))==UnsetFromHexString(SetToHexString("大家好"))?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/532175.htmlTechArticlefunction SingleDecToHex($dec) { $tmp=""; $dec=$dec%16; if($dec return $tmp.$dec; $arr=array("a","b","c","d","e","f"); return $tmp.$arr[$dec-10]; } function SingleHexToDec($hex) { $...
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template