如果不能正常显示,请查看原文 , 或返回

GitHub

PHP Readability Library

Back the fun of reading

The PHP port of Readability.js by Arc90.

Requirements

Live demo

http://graceco.de/readability/

Usage

require 'lib/Readability.inc.php';

$Readability     = new Readability($html, $html_input_charset); // default charset is utf-8
$ReadabilityData = $Readability->getContent(); // throws an exception when no suitable content is found

// You can see more params by var_dump($ReadabilityData);
echo "

".$ReadabilityData['title']."

"; echo $ReadabilityData['content'];

PS: For Node.js port, You can check this.

返回