<?php
$webAdress = "http://www.hedehödü.com/";
$connect = file_get_contents($webAdress);
preg_match_all('~<img.+src=[\'|"](.*?)[\'|"].+/>~i',$connect,$allImages);

for($i=0; $i<count($allImages[1]); $i++):
       echo $allImages[1][$i] . "<br />";
endfor;
?>