php simple_html_dom使用教程

<?php
include 'simple_html_dom.php';

$content = file_get_contents('fwrite.txt');

$html = new \simple_html_dom();
$html->load($content);

echo $html->find('#browser_name',0)->plaintext;
$html->clear();
?>

simple_html_dom类文件下载地址:

https://sourceforge.net/projects/simplehtmldom/files/

官方教程:

http://simplehtmldom.sourceforge.net/manual.htm   给的文档很详细了!

猜你喜欢

转载自wangking717.iteye.com/blog/2341212