PHP:: 如何使用简单的html dom 解析器(utf-8、windows-255 等)获取网页的字符集值?
备注:必须使用 html dom 解析器http://simplehtmldom.sourceforge.net
Example1 网页字符集输入:
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
结果:utf-8
Example2 网页字符集输入:
<meta content="text/html; charset=windows-255" http-equiv="Content-Type">
结果:windows-255
编辑:
我试试这个(但它不起作用):
$html = file_get_html('http://www.google.com/');
$el=$html->find('meta[content]',0);
echo $el->charset;
应该改变什么?(我知道 $el->charset 不起作用)
谢谢