File "example_modify_contents.php"
Full path: /home/kosmetik/public_html/api/price_hunt/example/example_modify_contents.php
File
size: 236 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
include '../simple_html_dom.php';
$html = file_get_html('http://www.google.com/');
foreach ($html->find('img') as $e) {
$e->outertext = '';
}
foreach ($html->find('input') as $e) {
$e->outertext = '[INPUT]';
}
echo $html;