我正在尝试亚马逊的价格以进行锻炼。
<?php
require('simple_html_dom.php');
$get = $_GET['id'];
$get_url = 'http://www.amazon.co.uk/s/field-keywords='.$get;
echo $get_url;
// Retrieve the DOM from a given URL
$html = file_get_html($get_url);
foreach($html->find('li[class=newp]') as $e)
echo $e->plaintext . '<br>';
我尝试了一些不同的方法:
li[class=newp]
。价格
ul[类=rsltL]
但它没有返回任何东西,我做错了什么?
我也尝试返回标题:
.lrg.bold
试过Xpath,没有。
谢谢