当我尝试从特定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);
}
}
提前求助