<?php
$html = 'https://www.pinterest.com/martolin680010/котики-фото/';
preg_match('#<img class=\"hCL kVc L4E MIw\" scr=\"(.*)\" alt=\"Милые Детеныши Животных, Милые Дети, Принц, Счастливый, Инстаграм, Мемы, Животные\" \/>#isU', $html, $matches);
echo '<pre>' . print_r($matches, true);
?>
$html = '<img src="1.jpg" alt="alt" />';
preg_match('#<img src=\"(.*)\" alt=\"(.*)\" \/>#isU', $html, $matches);
echo '<pre>' . print_r($matches, true);
<?php
$html = 'https://100-faktov.ru/100-faktov-pro-evropu/';
preg_match('#<img class=\"aligncenter wp-image-301\" src=\"(.*)\" alt=\"(.*)\" \/>#isU', $html, $matches);
echo '<pre>' . print_r($matches, true);
?>
<?php
$curl = curl_init();
curl_setopt($curl, CURLOPT_USERAGENT,'Mozilla/5.0 (Windows NT 10.0; rv:91.0) Gecko/20100101 Firefox/91.0');
curl_setopt($curl, CURLOPT_URL, 'http://сайт');
curl_setopt($curl, CURLOPT_TIMEOUT, 60);
curl_setopt($curl, CURLOPT_HTTPGET, 1);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($curl, CURLOPT_PROXY, '127.0.0.1:9050');
curl_setopt($curl, CURLOPT_PROXYTYPE, 7);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, TRUE);
$html = curl_exec($curl);
$error = curl_error($curl);
var_dump($error);
var_dump($html);
?>