1
如何使用php簡單的html dom獲取href裏面的「name」或「id」屬性。另外我需要「標題文本」在「h4」標籤內。 你能幫我嗎? 下面是HTML:php簡單的html dom獲取td內的href id
<td>
<a href="../Vehicle?itemID=22995061&RowNumber=9&loadRecent=True" name="22995061" id="22995061">
<h4>title text</h4>
</a>
<p>
Stock#:
<text>example</text>
</p>
<p>BLA BLA</p>
<p> fffff </p>
</td>
我想這樣的事情,但它返回我的空白。
IDs = array();
$url = "http://someurl";
$html = file_get_html(url);
foreach($html->find('h4') as $e)
{
echo $e->innertext."<br>";
$dataID = $e->innertext;
$IDs[] = $dataID;
}
嗨,TNX的答覆,但我使用PHP簡單的HTML DOM搶數據,因爲我是我代理後面。當我在代理服務器後面時,我不知道如何使用php DOM來獲取URL。 – dilesko