graby

1 · · Aug. 13, 2021, 12:30 a.m.
graby Graby helps you extract article content from web pages Full-Text RSS works great as a standalone application. But when you need to encapsulate it in your own library it’s a mess. You need this kind of ugly thing: $article = 'http://www.bbc.com/news/entertainment-arts-32547474'; $request = 'http://example.org/full-text-rss/makefulltextfeed.php?format=json&url='.urlencode($article); $result = @file_get_contents($request); Also, if you want to understand how things work internally, it’s rea...