Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
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;
}

gives error:

Warning: preg_match() [function.preg-match]: Unknown modifier '>' in /home/foo/public_html/foo/source/class.ControlBookmark.php on line 16

PHP.net reference on pcre

http://php.net/manual/en/reference.pcre.pattern.syntax.php

share|improve this question

2 Answers

up vote 3 down vote accepted

Use regex boundaries/delimiter in your regex pattern variable $pattern like this:

$pattern = '#<link\s+(?=[^>]*rel="(?:[Ss]hortcut\s)?[Ii]con"\s+)(?:[^>]*href="(.+?)").*/>#';
share|improve this answer
I like forward slashes for consistency. – livingston_mechanical May 23 '12 at 22:09
1  
Since your regex already has / (forward slash) it is better to avoid using / as regex delimiter (like in my answer using #) or else escape it like this \/. – anubhava May 23 '12 at 22:10
Hash is cool..did no know I could use it. – livingston_mechanical May 23 '12 at 22:14
In PCRE regex you can use any of these: / or # or ~ or | or @ or ; as regex delimiter. – anubhava May 23 '12 at 22:16
...wow..that would explain a lot...I saw someone use ~...and I didn't know what the heck it was....I'll keep that in mind. – livingston_mechanical May 23 '12 at 22:18
show 1 more comment

You problem is due to unescaped slash at the end of your expression. Try this instead:

$pattern = '/<link\s+(?=[^>]*rel="(?:[Ss]hortcut\s)?[Ii]con"\s+)(?:[^>]*href="(.+?)").*\/>/';
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.