更好的选择(并且更健壮)是使用 DOMDocument 和 DOMXPath:
<?php
error_reporting(E_ALL);
function getFacebook($html) {
$dom = new DOMDocument;
@$dom->loadHTML($html);
$query = new DOMXPath($dom);
$result = $query->evaluate("(//a|//A)[contains(@href, 'facebook.com')]");
$return = array();
foreach ($result as $element) {
/** @var $element DOMElement */
$return[] = $element->getAttribute('href');
}
return $return;
}
$html = file_get_contents('http://curvywriter.info/contact-me/');
var_dump(getFacebook($html));
但是,对于您的具体问题,我做了以下事情:
- 更改
preg_match
为preg_match_all
,以便在第一次查找后不停止。
- 从模式中删除了
^
(开始)和$
(结束)字符。您的链接将出现在文档的中间,而不是在开头或结尾(绝对不能同时出现!)
所以更正的代码:
<?php
error_reporting(E_ALL);
function getFacebook($html) {
$matches = array();
if (preg_match_all('~https?://(?:www\.)?facebook.com/(.+)/?~', $html, $matches)) {
print_r($matches);
}
}
$html = file_get_contents('http://curvywriter.info/contact-me/');
getFacebook($html);