使用DOM获取特定DIV中的数据

时间:2015-02-27 09:13:16

标签: php html domdocument

当我尝试从特定DIV获取数据时遇到问题,我得到了空白回报。

产品的链接:www.phoneaxe.fr/info.php?id=15921

这里是我提取价格的代码

$nodeList_price = $dom->getElementsbytagname('div');
foreach ($nodeList_price as $node_price)
{
    if($node_price->getAttribute('class') == 'prix_info')
    {
        var_dump($node_price->nodeValue);
    }
}

提前求助

0 个答案:

没有答案