HomeHome (opens in a new tab)Contact โ†—Contact โ†— (opens in a new tab)
GitHubGitHub (opens in a new tab)
  • Introduction
  • Falcon ๐ŸŒŽ
    • Installation
    • Basic usage
    • Results
    • Options
    • Regexes
    • Parsers
    • Drivers ๐Ÿ”Ž
      • Selenium
      • Simple HTML Dom
    • Extending Falcon โšก
  • Falcon SDK ๐Ÿšง
  • Falcon API ๐Ÿšง
  • Falcon AI ๐Ÿšง
  • Introduction
  • Falcon ๐ŸŒŽ
    • Installation
    • Basic usage
    • Results
    • Options
    • Regexes
    • Parsers
    • Drivers ๐Ÿ”Ž
      • Selenium
      • Simple HTML Dom
        • Installation
        • Usage
    • Extending Falcon โšก
  • Falcon SDK ๐Ÿšง
  • Falcon API ๐Ÿšง
  • Falcon AI ๐Ÿšง
  • Home (opens in a new tab)
  • Contact โ†— (opens in a new tab)

On This Page

  • Installation
  • Usage
Question? Give us feedback โ†’ (opens in a new tab)Edit this page
Falcon ๐ŸŒŽ
Drivers ๐Ÿ”Ž
Simple HTML Dom

SimpleHtmlDom

GitHub (opens in a new tab)

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();
SeleniumExtending Falcon โšก

Antheta