欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php如何将中文转ascii

程序员文章站 2022-04-16 10:36:48
...

php中文转ascii的方法:首先创建一个PHP示例文件;然后定义一个“strtoascii”方法;接着使用“mb_convert_encoding”函数转换编码;最后执行该文件并输出转换结果即可。

php如何将中文转ascii

推荐:《PHP教程

将字符串(中文同样实用)转为ascii(注意:我默认当前我们的php文件环境是UTF-8,如果是GBK的话mb_convert_encoding操作就不需要)

public function strtoascii($str){
        $str=mb_convert_encoding($str,'GB2312');
        $change_after='';
        for($i=0;$i<strlen($str);$i++){
            $temp_str=dechex(ord($str[$i]));
            $change_after.=$temp_str[1].$temp_str[0];
        }
        return strtoupper($change_after);

以上就是php如何将中文转ascii的详细内容,更多请关注其它相关文章!

相关标签: php ascii