php utf-8字符转ascii字符

Posted 悉野小楼

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php utf-8字符转ascii字符相关的知识,希望对你有一定的参考价值。

function utf8_urldecode($str) 

{
$str = preg_replace("/%u([0-9a-f]{3,4})/i","&#x\\1;",urldecode($str));
return html_entity_decode($str,null,‘UTF-8‘);;
}

function ConvertUTF8ToGB2312($str)
{
return iconv("UTF-8","GB2312//IGNORE",$str);
}

function ConvertGB2312ToUTF8($str)
{
return iconv("GB2312","UTF-8//IGNORE",$str);
}

php处理环境是utf-8的, jquery所在网页也是的utf-8的, jquery post的中文数据以%u开头, 需要将这个code转发到另一台接收gb2312字符的web网站

if(isset($_REQUEST["code"]))
{
    //解码
    $tmp = utf8_urldecode($_REQUEST["code"]);
    //utf-8转gb2312
    $tmp = ConvertUTF8ToGB2312($tmp);
    //编码
    $tmp = urlencode($tmp);
    $AppendPara .= "&code=" . $tmp;
}
else
{
    $AppendPara .= "&code=";
}

 

以上是关于php utf-8字符转ascii字符的主要内容,如果未能解决你的问题,请参考以下文章

php字符串转数组

Unicode ASCII UTF-8 GBK关系

python字符转码

为啥 C11 或 C++11 中没有 ASCII 或 UTF-8 字符文字?

将非 ASCII 字符从 ASCII-8BIT 转换为 UTF-8

python学习DAY7(编码转码)