当前位置:Gxlcms > PHP教程 > php使用curl中文乱码问题

php使用curl中文乱码问题

时间:2021-07-01 10:21:17 帮助过:31人阅读

在使用php语言做 服务器端重定向时可能会出现中文乱码问题?

解决方法也是很简单的:

 $contents= file_get_contents('http://www.yitire.com/'); // 获取 页面内容 $en_contents=mb_convert_encoding($contents, 'UTF-8', 'UTF-8,GBK,GB2312,BIG5');  // 对页面内容进行编码

这种服务器端跳转有个不好的地方是:不能传递session 和cookie ,不过也有相应的方法解决。

人气教程排行