我写了这段代码,但它有效
<?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');
?>
我仍然得到空白页
答案 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');