ABout简单的Html Dom方法 - > load_file

时间:2014-01-08 13:08:26

标签: php html dom

我写了这段代码,但它有效

<?php
include ('require/simplehtmldom_1_5/simple_html_dom.php');

echo $html=file_get_html('http://www.site.com');
?>

现在我希望它能够使用对象方法 我这样做了:

<?php
include ('require/simplehtmldom_1_5/simple_html_dom.php');
$html = new simple_html_dom();
echo $html->load_file('http://www.site.com');
?>

我的屏幕空白。

任何帮助都将不胜感激

感谢。


此错误报告已激活

 <?php
 ini_set('display_errors',1);
 ini_set('display_startup_errors',1);
 error_reporting(-1);

include ('require/simplehtmldom_1_5/simple_html_dom.php');
$html = new simple_html_dom();
echo $html->load_file('http://www.site.com');
?>

我仍然得到空白页

1 个答案:

答案 0 :(得分:0)

如果您查看手册 http://simplehtmldom.sourceforge.net/manual.htm

使用oop方法转储dom,你应该使用

// Dumps the internal DOM tree back into string 
$str = $html->save();

// Dumps the internal DOM tree back into a file 
$html->save('result.htm');