0
我試圖分析此網站(獲得IMG鏈接)從RSS飼料IMG:http://statigr.am/feed/parishilton解析使用PHP簡單的HTML DOM解析器
這是我的代碼:
include 'parse/simple_html_dom.php';
// Create DOM from URL or file
$html = file_get_html('http://statigr.am/feed/parishilton/');
// Find all images
foreach($html->find('img') as $element)
{
echo $element->src . '<br>';
}
腳本不返回任何東西!這是爲什麼 ?我想要img
鏈接。
謝謝! 如果我想在相同的數組中發佈鏈接,說明和時間,我該怎麼辦? 輸出: 1. 鏈路:BLA 描述:XX 時間:XX 2.鏈路 描述:XX 時間:XX –
'的foreach($ HTML->找到( '項目')爲$ EL) \t { \t echo $ el-> find('description img',0) - > src。 「
」; \t echo $ el-> find('link',0) - > innertext。 「
」; \t echo $ el-> find('pubDate',0) - > innertext。 「
」; \t}' –
[閱讀文檔](http://simplehtmldom.sourceforge.net/manual.htm#section_quickstart)。 –