本文操作环境:windows7系统,PHP7.4版,Dell G3电脑。php 怎么将其他编码 转utf8?php将任意编码的内容转换成utf-8思路先找出字符串本身的编码,再转换为utf-8编码。 方法function str_to_ut
本文操作环境:windows7系统,PHP7.4版,Dell G3电脑。
php 怎么将其他编码 转utf8?
php将任意编码的内容转换成utf-8
思路
先找出字符串本身的编码,再转换为utf-8编码。
方法
function str_to_utf8 ($str = '') {
$current_encode = mb_detect_encoding($str, array("ASCII","GB2312","GBK",'BIG5','UTF-8'));
$encoded_str = mb_convert_encoding($str, 'UTF-8', $current_encode);
return $encoded_str;
}
--结束END--
本文标题: php 怎么将其他编码 转utf8
本文链接: https://lsjlt.com/news/791.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0