Releases: j0k3r/graby
Releases · j0k3r/graby
2.4.5
2.4.4
2.4.3
2.4.2
2.4.1
2.4.0
Addition
If you want to extract content from a page you already fetched outside of Graby, you can call setContentAsPrefetched()
before calling fetchContent()
, e.g.:
use Graby\Graby;
$article = 'http://www.bbc.com/news/entertainment-arts-32547474';
$input = '<html>[...]</html>';
$graby = new Graby();
$graby->setContentAsPrefetched($input);
$result = $graby->fetchContent($article);
What's Changed
Full Changelog: 2.3.3...2.4.0
2.3.5
2.3.4
What's Changed
- Fix PHP Error/Warnning by @girishpanchal30 in #279
- Ensure empty value from
site_config
are kept by @j0k3r in #280
New Contributors
- @girishpanchal30 made their first contribution in #279
Full Changelog: 2.3.3...2.3.4