<p>Тут текст <img alt="" src="https://nailsoftheday.com/upload/_images/images/26.jpg" style="height:437px; width:437px" /> произвольный текст</p>
<p>произвольный текст <img alt="" src="https://nailsoftheday.com/upload/_images/images/placeholder-3.jpg" style="height:800px; width:1280px" /> произвольный текст произвольный текст</p>
$content = file_get_contents('img.php'); // Присваеваем переменной $content html страницу
preg_match_all('/src=\"(.*?)\"/', $content, $array); // выбираем из переменной $content все src
foreach ($array[1] as $item){
var_dump($item); // выводим чистые ссылки картинок
}