fork download
  1. <?php
  2.  
  3. echo fbUser( 'http://f...content-available-to-author-only...k.com/walterwhite' ).PHP_EOL;
  4. echo fbUser( 'http://w...content-available-to-author-only...k.com/roberval' ).PHP_EOL;
  5. echo fbUser( 'http://w...content-available-to-author-only...k.com/profile.php?id=xxxxx').PHP_EOL;
  6. echo fbUser( 'http://www.google.com/search').PHP_EOL;
  7.  
  8. function fbUser( $url ) {
  9. preg_match('~^https?://(www.)?facebook.com/(profile\.php\?id=)?(.*)~',$url,$matches);
  10. return $matches[3];
  11. }
Success #stdin #stdout #stderr 0.01s 52488KB
stdin
Standard input is empty
stdout
walterwhite
roberval
xxxxx

stderr
PHP Notice:  Undefined offset: 3 in /home/ipznoe/prog.php on line 10