获取元标题和描述
我无法从此特定网站获取元描述/标题。
这是一些代码:
$file = file('http://www.thegooddrugsguide.com/lsd/index.htm');
$file = implode("",$file);
if (preg_match('/<title>(.*?)<\/title>/is',$file,$t)) $title = $t[1];
它适用于其他网站,但不适用于相关网站。可能是什么问题?
I am having trouble getting the meta description/title from this specific site.
Here is some code:
$file = file('http://www.thegooddrugsguide.com/lsd/index.htm');
$file = implode("",$file);
if (preg_match('/<title>(.*?)<\/title>/is',$file,$t)) $title = $t[1];
It works with other sites, but not with the site in question. What could be the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该可以正常工作:
更多信息:http://www.php.net/manual /en/book.dom.php
编辑:这个较短的版本也可以找到描述:
This should work fine:
More info: http://www.php.net/manual/en/book.dom.php
Edit: this shorter version can also work to find the description: