如何提取网站标题?

发布于 2024-11-04 22:25:52 字数 193 浏览 0 评论 0原文

可能的重复:
解析 HTML 的最佳方法

如何使用 PHP 提取网站的标题?

Possible Duplicate:
Best methods to parse HTML

How do I extract title of a website using PHP?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

硪扪都還晓 2024-11-11 22:25:52

要使用 HTML 进行操作,您可以使用 文档对象模型(这是推荐的方式)。

如果您正在寻找一种快速的解决方案,那么它是相当简单的正则表达式:

$html = file_get_contents('http://example.com');
$matches = preg_match("/<title>([^<]*)<\/title>/im");
echo $matches[1];

To manupulate with HTML you can use Document Object Model (this is the recomended way).

If you are looking for a dirty fast solution, it's rather simple regexp:

$html = file_get_contents('http://example.com');
$matches = preg_match("/<title>([^<]*)<\/title>/im");
echo $matches[1];
演出会有结束 2024-11-11 22:25:52

您可以通过$_SERVER['HTTP_HOST']获取域名。

You can get the domain name through $_SERVER['HTTP_HOST'].

迷爱 2024-11-11 22:25:52

使用 curl 获取文档,通过 一个解析器,然后使用解析器提供的任何 API 来获取标题元素(如果存在,则使用 //title XPath 支持)。

Grab the document using curl, run it through a parser and then use whatever API that parser provides to get the title element (//title will do if there is XPath support).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文