CodeIgniter:帮助从网页获取元标记的类/库?
我正在使用代码点火器。我想我使用哪个 php 框架并不重要。
但在我编写自己的类之前,已经编写了另一个类,该类允许用户获取任何站点的页面标题和元标记(关键字、描述)...如果有的话。
任何能够做到这一点的 PHP 类都很棒。
谢谢大家
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
你应该看看这个类: PHP Simple HTML DOM 它的工作方式如下:
You should have a look at this class: PHP Simple HTML DOM it works this way:
使用PHP 的curl 库。它可以从网络上提取其他页面并将它们作为字符串获取,然后您可以使用正则表达式解析该字符串以查找页面的标题和元标记。
Use PHP's curl library. It can pull other pages from the web and fetch them as strings, and then you can parse the string with regular expressions to find the page's title and meta tags.
您可以使用 get_meta_tags 从远程页面获取所有元标记 - https://www.php.net/get_meta_tags
此页面有一个类来获取页面和描述,他们也使用 get_meta_tags - http://www.emirplicanic.com/php/get-remote-page-title-with-php.php
您应该能够将两者的位组合起来以获得您想要的一切需要。
You can get all the meta tags froma remote page with get_meta_tags - https://www.php.net/get_meta_tags
this page has a class to get the page and description, they are also using get_meta_tags - http://www.emirplicanic.com/php/get-remote-page-title-with-php.php
You should be able to combine bits from both to get everything you need.
使用 DOM/xpath
With DOM/xpath
请参阅此内容。 这是获取页面元标记并执行操作的通用类还有更多。看看是否可以将其添加到 codeigniter 库中。谢谢
See this please. This is generic class to get page meta tags and do a lot more. See if you can add this in codeigniter library. Thanks
试试这个:
Try this: