Advertisement
nabikaz

Untitled

Jun 15th, 2012
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $content = <<<EOF
  2. <a href="http://test.com/666_X.jpg"></a><a href="http://test.com/1001_A.jpg"></a><a href="http://test.com/1002_A.jpg"></a><a href="http://test.com/1003_A.jpg"></a>
  3. EOF;
  4.  
  5. echo "<PRE>";
  6. preg_match_all("/<a href=\"http:\/\/test.com\/(.*?)_A\.jpg\"><\/a>/", $content, $matches);
  7. print_r($matches);
  8.  
  9. /*
  10. Export:
  11. <PRE>Array
  12. (
  13.     [0] => Array
  14.         (
  15.             [0] => <a href="http://test.com/666_X.jpg"></a><a href="http://test.com/1001_A.jpg"></a>
  16.             [1] => <a href="http://test.com/1002_A.jpg"></a>
  17.             [2] => <a href="http://test.com/1003_A.jpg"></a>
  18.         )
  19.  
  20.     [1] => Array
  21.         (
  22.             [0] => 666_X.jpg"></a><a href="http://test.com/1001
  23.             [1] => 1002
  24.             [2] => 1003
  25.         )
  26.  
  27. )
  28. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement