ExtractContent for PHP7.
Install Plugin using composer.
composer require "sters/extract-content:dev-master"
use ExtractContent\ExtractContent;
$content = file_get_contents('https://en.wikipedia.org/wiki/PHPUnit');
$extractor = new ExtractContent($content);
$result = $extractor->analyse();
Output example.
PHPUnit is based on the idea that developers should be able to find mistakes in their newly committed code quickly and assert...