百度搜索热门的词会在底部有相关搜索的10个关键词,现使用simple_html_dom获取其关键词,

如:百度搜索“php” 会有以下的几个相关的词。

<?php
//百度相关搜索 关键词
$word = 'php'; //搜索关键词
include 'simple_html_dom.php';
$baidu = 'http://www.baidu.com';
$url = 'http://www.baidu.com/s?wd='.$word;
$html = file_get_html($url);
$links = $html->find('#rs a'); 
foreach ($links as $v){
    echo $v->plaintext."<br>\n";
    echo $baidu.$v->href."<br>\n";
    echo "<br>\n";
}