enqinHLC

product img regex

Jul 27th, 2015
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. $source = file_get_contents('https://www.evidea.com/arnica-zg-16a-universal-fritoz-mya037/p/210976?refKey=2oL6GAr7a');
  4. preg_match('#<img class="quick-add-image" src="(.*?)" alt="(.*?)" \/>#si', $source, $info);
  5. $resim = $info[1];
  6. $alt = $info[2];
  7.  
  8. echo $resim;
  9.  
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment