PHP code example of markuspoerschke / extractum
1. Go to this page and download the library: Download markuspoerschke/extractum library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
markuspoerschke / extractum example snippets
$uri = 'https://www.example.com/';
$html = file_get_contents($uri);
$extractor = new Extractum\Extractor();
$essence = $extractor->extract($html, $uri);