PHP- HTML 解析 :: 如何使用简单的 html dom 解析器获取网页的字符集值?
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
示例2网页字符集输入:
<meta content="text/html; charset=windows-255" http-equiv="Content-Type">
结果:windows-255
编辑:
I尝试这个(但它不起作用):
$html = file_get_html('http://www.google.com/');
$el=$html->find('meta[content]',0);
echo $el->charset;
应该改变什么? (我知道 $el->charset 不起作用)
谢谢
PHP:: How can be taken charset value of webpage with simple html dom parser (utf-8, windows-255, etc..)?
remark: its have to be done with html dom parser http://simplehtmldom.sourceforge.net
Example1 webpage charset input:
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
result:utf-8
Example2 webpage charset input:
<meta content="text/html; charset=windows-255" http-equiv="Content-Type">
result:windows-255
Edit:
I try this (but its not works):
$html = file_get_html('http://www.google.com/');
$el=$html->find('meta[content]',0);
echo $el->charset;
What should be change?
(I know that $el->charset not working)
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您必须使用正则表达式来匹配字符串(我希望您有 PCRE...)。
不是很健壮,但应该可以工作。
You'll have to match the string using a regular expression (I hope you have PCRE...).
Not very robust, but should work.
请注意,DOM 扩展隐式地将所有数据转换为 UTF-8。
Note that the DOM extension implicitly converts all the data to UTF-8.
感谢 MvanGeest 的回答 - 我只是修复了一点,效果很完美。
Thanks for MvanGeest answer - I just fix a bit and its works perfect.