Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.53 KB | None | 0 0
  1. <?php
  2. include_once('./../parser/simple_html_dom.php');
  3.  
  4. $details = file_get_html("https://gratka.pl/nieruchomosci/mieszkanie-warszawa-bialoleka-ul-swiatowida/oi/2613984");
  5.  
  6. $scripts = $details->find("script");
  7.  
  8. $photos = $scripts[32]->innertext;
  9.  
  10. preg_match('/(data")\s*:([^\]]+)/', $photos, $photos);
  11. if(isset($photos[2])){
  12.     var_dump($photos[2]);
  13.     echo "<hr>";
  14.     preg_match('/.*?"url":"(.*?)"/', $photos[2], $p);
  15.     echo "wynikow: ".count($p)."<hr>";
  16.     foreach ($p as $px) {
  17.         echo $px . "<br>";
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement