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
    • Extending Falcon ⚡
  • Falcon SDK 🚧
  • Falcon API 🚧
  • Falcon AI 🚧
  • Home (opens in a new tab)
  • Contact ↗ (opens in a new tab)
Question? Give us feedback → (opens in a new tab)Edit this page
Falcon 🌎
Basic usage

Basic usage

Running the scraper:

$falcon = Falcon::getInstance()->run("https://example.com/");
$result = $falcon->parse()->results(); // use all available parsers and get all results

The example above scrapes the url and returns an array.

InstallationResults

Antheta