Feelingfree

get url

Mar 20th, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php
  2. header("Content-Type:text/plain");
  3. //set_time_limit (0);
  4. $dir = dirname(__FILE__);
  5. $data = file_get_contents("$dir/full_html.htm");
  6.  
  7. // regex find url
  8. preg_match_all('@https://fbcdn-sphotos-[a-z]+-a.akamaihd.net/hphotos-ak-[a-z0-9]+/t1.0-9/p417x417/[0-9]+_[0-9]+_[0-9]+_[a-z]+.jpg@si',$data,$url);
  9. $url = $url['0'];
  10.  
  11. print_r ($url);
  12.  
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment