dotpack/php-boiler-pipe

PhpBoilerPipe. Boilerplate Removal and Fulltext Extraction from HTML pages

dev-master 2016-09-21 10:36 UTC

This package is not auto-updated.

Last update: 2024-04-17 17:22:10 UTC


README

Boilerplate Removal and Fulltext Extraction from HTML pages.

Partial implementation of https://github.com/kohlschutter/boilerpipe in PHP. Requires PHP >= 5.4.

Example

# html
$path = "http://example.com/some-article.html";
$data = file_get_contents($path);

# code
$ae = new DotPack\PhpBoilerPipe\ArticleExtractor();
echo $ae->getContent($data) . "\n";