zegnat / linkextractor
A package that tries to figure out what resources an HTML document links to.
Requires
- php: >=7.0
- guzzlehttp/psr7: ^1.7 || ^2.0
Requires (Dev)
- phpunit/phpunit: ^6.5 || ^7.5 || ^8.5 || ^9.6
- squizlabs/php_codesniffer: ^3.6
This package is auto-updated.
Last update: 2026-07-12 23:33:55 UTC
README
The LinkExtractor tries to figure out what resources an HTML document links to.
This tries to solve 2 questions:
- what constitutes a link between an HTML document and another resource, and
- how to supply them in a useful (resolved) format.
The class is able to get (and resolve) every URL from a pre-parsed DOM in accordance with where the HTML5 specification allows URLs to be defined. The HTML5 specification is followed after a GitHub discussion about what a link is, and further in person discussion at IWC Berlin 2017.
Using versions < 1.0
The current function prototypes are the same as those that will be in 1.0.0. This means you can write the method calls in your code right now and update to 1.0.0 without breaking any of your calls later.
function extract(): array function linksTo(string $url): bool
If you rely on specific output or exceptions from these methods however, there might be breaking changes before version 1.0.0. Take a look at the roadmap to version 1.0.0 to get an idea of what is likely to still be changed.
Don’t wait for 1.0.0 with using this library if you need it! Instead, start using it and leave the ever-important feedback.
Install
Via Composer
$ composer require zegnat/linkextractor
Usage
// Parse the HTML into a DOMDocument: $dom = new \DOMDocument(); $dom->loadHTML(file_get_contents('http://example.com/index.html')); // Initiate the extractor with the document and its URL: $extractor = new \Zegnat\LinkExtractor\LinkExtractor($dom, 'http://example.com/index.html'); var_dump( $extractor->linksTo('https://github.com/'), $extractor->linksTo('http://www.iana.org/domains/example') ); /* bool(false) bool(true) */
On PHP 8.4 and newer you can instead pass a document parsed with the new
\Dom\HTMLDocument API and its standards-compliant HTML parser:
$dom = \Dom\HTMLDocument::createFromString( file_get_contents('http://example.com/index.html') ); $extractor = new \Zegnat\LinkExtractor\LinkExtractor($dom, 'http://example.com/index.html');
Supported PHP versions
This library requires PHP 7.0 or newer and is tested against PHP 7.0, 7.1, 7.2, 7.3, 7.4, 8.0, 8.1, 8.2, 8.3, 8.4 and 8.5.
From PHP 8.4 onwards it accepts both \DOMNode and \Dom\Node.
Testing
Tests run on every supported PHP version through Docker, orchestrated by Castor. Each PHP version and its dependencies live entirely in their container, so only Docker and Castor are needed on the host:
$ castor matrix # run the whole matrix $ castor test 8.4 # run a single version $ castor coverage # run with code coverage and enforce the minimum
Some test fixtures under tests/files are copied verbatim from external
open-source projects under their respective licenses; see CREDITS.md
for their sources and the LICENSES directory (REUSE).
License
The BSD Zero Clause License (0BSD). Please see the LICENSE file for more information.