以下に示すように:
コードをコピーします コードは次のとおりです:
function unicode_encode($str, $encoding='GBK', $prefix='', $postfix =';' ){
$str = iconv($encoding, 'UCS-2', $str);
$arrstr = str_split($str, 2);
$unistr = '';
for($i= 0, $len =count($arrstr); $i<$len; $i++)
{
$dec = hexdec($arrstr[$i]));
$unistr .= $prefix.$dec. $postfix;
}
return $unistr;
}
$str = 'haha';
$unistr = unicode_encode($str);
echo $unistr.'
';
?>
http://www.bkjia.com/PHPjc/327521.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/327521.html技術記事以下に示すように、次のようにコードをコピーします。 ?php function unicode_encode($str, $encoding='GBK', $prefix=''){ $str = iconv($encoding, 'UCS-2', $str); $ arrstr = str_split($str, 2);