File "example_basic_selector.php"

Full path: /home/kosmetik/public_html/api/price_hunt/example/example_basic_selector.php
File size: 269 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?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;