Advertisement
Guest User

Untitled

a guest
Nov 15th, 2012
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php
  2. $f = fopen ('http://fanpagelist.com/category/top_users/view/list/sort/fans/page1', 'r');
  3. $page = '';
  4. while ($line = fgets($f)) {
  5. $page .= $line;
  6. }
  7. fclose ($f);
  8. preg_match_all('#(?:(?<=\bhref="/like_box\.php\?id=)|' .
  9. '(?<=\bsrc="https://graph\.facebook\.com/))\d+#i',
  10. $page, $result, PREG_PATTERN_ORDER);
  11.  
  12.  
  13.  
  14. for($i=0;$i<$result.length,$i++){
  15. echo $result[$i];
  16. echo "<br/>";
  17. }
  18.  
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement