我正在使用以下内容获取页面的标题
$urlContents = file_get_contents("$url");
preg_match("/<title>(.*)<\/title>/i", $urlContents, $matches);
我遇到的问题是标题位于 3 行的网站之一
<head id="head"><title>
title goes here
</title><meta name="description" content="meta description" />
这是我正在写的一个基本的页面搜索引擎优化工具,有没有更好的方法可以获得页面的标题?
谢谢