如何使用HTMLdom API自行获取其他网站的搜索引擎以及该网站的结果。答案将不胜感激
答案 0 :(得分:0)
结合两种技术可以实现目标。
简单的PHP Dom解析器
// php.net/manual/en/book.curl.php
// simplehtmldom.sourceforge.net
答案 1 :(得分:0)
<form method="get" action="url_look.php">
<input type="text" name="keywords"/>
<input type="submit" value="submit"/>
</form>
require_once('uploads/simple_html_dom.php');
$keywords = str_replace(" ","-",$_GET['keywords']);
$url = "http://www.banggood.com/search/$keywords.html";
$html = file_get_html($url);
echo "<ul>";
foreach($html->find('span[class=title]') as $product_title){
//for more details visit http://simplehtmldom.sourceforge.net/manual.html
echo "<li>".$product_title."</li>";
}
echo "</ul>";