2014-01-08 53 views
1

我寫了這個代碼,它的工作關於簡單的HTML DOM方法 - > LOAD_FILE

<?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'); 
?> 

我有空白屏幕。

任何幫助將不勝感激

謝謝。


這個錯誤報告actived

<?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

採用接力方式傾倒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');