SimpleHtmlDom
SimpleHtmlDom Driver for Falcon
Wrapper for voku/simple_html_dom (opens in a new tab).
Installation
composer require antheta/falcon-drivers
Usage
The simple_html_dom has to be added to Falcon in order to use it:
$falcon = Falcon::getInstance();
$falcon->addDrivers([
"simple_html_dom" => \Antheta\Drivers\SimpleHtmlDomDriver::class
]);
$falcon->useDriver('simple_html_dom');
$falcon->parse()->results();