PHP code example of pforret / pf-article-extractor
1. Go to this page and download the library: Download pforret/pf-article-extractor 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/ */
pforret / pf-article-extractor example snippets
use Pforret\PfArticleExtractor\ArticleExtractor;
$articleData = ArticleExtractor::getArticle($html);
/*
* $articleData = Pforret\PfArticleExtractor\Formats\ArticleContents Object
(
[title] => Film Podcast: Wicked Little Letters Named Film of the Month
[content] => UK Film Club was back in March with a new episode of their film podcast. (...)
[date] =>
[images] => Array
(
[0] => https://static.wixstatic.com/media/.../b19cd0_dde0d59546f84127865267f43994f39b~mv2.jpg
)
[links] => Array
(
[0] => https://www.chrisolson.co.uk/
(...)
)
)
*/