当我从 url 通过 file_get_contents 获取内容时: http ://www.frequenceoptic.fr/actualites/serengeti-glamattitude.html
我在 php "Jeudi, 26 Août 2010 13:26" 中得到了字符串。月份中的字符不正确。
在指定的 html 页面上:
我的系统windows 7.php.ini 输出:http://pastebin.com/HJvinbtm
当我从 url 通过 file_get_contents 获取内容时: http ://www.frequenceoptic.fr/actualites/serengeti-glamattitude.html
我在 php "Jeudi, 26 Août 2010 13:26" 中得到了字符串。月份中的字符不正确。
在指定的 html 页面上:
我的系统windows 7.php.ini 输出:http://pastebin.com/HJvinbtm
你有一个 UTF-8 编码的字符串,它会解码为Jeudi, 26 Août 2010 13:26
确保您的页面也表明它使用 UTF-8 - 请参阅<meta charset="utf-8"> 与 <meta http-equiv="Content-Type">了解一些技术。或者,您可以使用utf8_decode()解码为 ISO-8859-1 ,但实际上,这些天您应该习惯使用 UTF-8 :)