0byt3m1n1
Path:
/
var
/
www
/
listcrawler.app
/
public_html
/
[
Home
]
File: get-list.php
<?php // example of how to use basic selector to retrieve HTML contents include('simplehtmldom/simple_html_dom.php'); // get DOM from URL or file $html = file_get_html('https://doublelist.com/city/wyoming/cm4w/'); print_r($html); // find all link /*foreach($html->find('a') as $e) echo $e->href . '<br>';*/ // extract text from HTML //echo $html->plaintext; ?>