<?php
include '../simple_html_dom.php';
libxml_use_internal_errors(true);
$html = file_get_html('https://www.vivre.ro/p-1334458/saltea_optimax_160x200_cm');
foreach ($html->find('img') as $element) {
echo $element->src . '<br>';
}
var_dump($html->plaintext);
exit;