clientbg / php-boiler-pipe
PhpBoilerPipe. Boilerplate Removal and Fulltext Extraction from HTML pages. Based on dotpack's PHP implementation.
v1.1
2018-08-21 07:46 UTC
Requires (Dev)
- phpunit/phpunit: 4.0.*
This package is not auto-updated.
Last update: 2024-10-27 05:57:24 UTC
README
- forked from dotpack/php-boiler-pipe
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 Clientbg\PhpBoilerPipe\ArticleExtractor(); echo $ae->getContent($data) . "\n";