есть код
<?php
// Create DOM from URL
$html = file_get_html('https://animestars.org/');
// Find all article blocks
foreach($html->find('div.rels-shot') as $article) {
$item['photo'] = $article->find('img.lazy-loaded')->src;
$item['intro'] = $article->find('a.short-t', 0)->plaintext;
$articles[] = $item;
?><img src="https://animestars.org<?php echo nl2br($item['photo']);?>"><p><?php echo nl2br($item['intro']);?></p><?php
}
?>
по сути он должен выводить фото и название аниме с сайта.... однако фото нету (
Что делать ?