怎么搜索百度网盘里的苍井空
现在很多人将资料共享到百度网盘里,但是用百度搜索的时候,是很难直接搜索到的,但是懂搜素引擎的人都知道,在搜索框中输入:site:pan.baidu.com 关键字,就可以搜索到百度网盘里的与关键字相关的资料,但是很多小白用户,不是很了解,所以想写个搜索网盘资料的网站或者软件,代码很简单,供大家参考
- <?php
- header(“Content-Type: text/html; charset=utf-8”);
- require_once “simple_html_dom.php”;
- /*
- * $word:关键字
- * $n :显示结果的条数
- *
- */
- function find($word,$n)
- {
- $qurl=’http://www.baidu.com/s?wd=site%3Apan.baidu.com%20′.$word.’&ie=utf-8′;
- $html=file_get_html($qurl);
- $first=$html->find(‘.result’,0);
- for($i=0;$i<$n;$i++)
- {
- $content.=$first->innertext.'<br/>’;
- $first=$first->next_sibling();
- }
- echo $content;
- $html->clear();
- }
- find(“苍井空”,3);
- ?>