我用下面的代碼來解析其他網站的HTML,但它顯示了致命的錯誤:file_get_html顯示致命錯誤調用未定義功能
$html=file_get_html('http://www.google.co.in');
Fatal error: Call to undefined function file_get_html()
我用下面的代碼來解析其他網站的HTML,但它顯示了致命的錯誤:file_get_html顯示致命錯誤調用未定義功能
$html=file_get_html('http://www.google.co.in');
Fatal error: Call to undefined function file_get_html()
你確定你已經下載並列入php simple html dom parser?
$html = file_get_contents('http://www.google.co.in');
讓頁面
嘗試的file_get_contents的HTML內容。
他正在尋找一個解析器以及獲取html –
它看起來像你正在尋找simplexml_load_file
將加載一個文件,並把它變成一個SimpleXML
對象。
當然,如果格式不正確,可能會導致問題。您的其他選項是DomObject::loadHTMLFile
。對於格式不完整的文件來說,這是一件好事。
如果您不關心XML並只想要數據,則可以使用file_get_contents
。
您正在呼叫的課程不屬於php
。
下載simple_html_dom
類here並使用您喜歡的方法。它是真正偉大的尤其是當你用電子郵件時事通訊的工作:
include_once('simple_html_dom.php');
$html = file_get_html('http://www.google.co.in');
下載simple_html_dom.php從這裏Click here
寫信這些線到PHP文件 include_once( 'simple_html_dom.php'); 並在此之後開始打電話 $ html = file_get_html('http://www.google.co.in'); 沒有錯誤將被顯示
嘗試閱讀和理解錯誤文本 – RiaD