private function pageScrape( $url )
{
$page_stream = file_get_contents( $url );
$pattern = '/<link\s+(?=[^>]*rel="(?:[Ss]hortcut\s)?[Ii]con"\s+)(?:[^>]*href="(.+?)").*/>/';
preg_match( $pattern, $page_stream, $matches );
print_r( $matches );
// echo $page_stream;
}
给出错误:
警告:preg_match() [function.preg-match]:第16 行/home/foo/public_html/foo/source/class.ControlBookmark.php中的未知修饰符 '>'
关于 pcre 的 PHP.net 参考