标签:blog http io 使用 2014 问题 log html on
在使用php语言做 服务器端重定向时可能会出现中文乱码问题?
解决方法也是很简单的:
$contents= file_get_contents('http://www.yitire.com/'); // 获取 页面内容 $en_contents=mb_convert_encoding($contents, 'UTF-8', 'UTF-8,GBK,GB2312,BIG5'); // 对页面内容进行编码
标签:blog http io 使用 2014 问题 log html on
原文地址:http://blog.csdn.net/honglei_zh/article/details/39102849