如题: 写段php代码: 实现每隔1个小时,自动更新采集http://top.baidu.com/buzz/top10.html里面的关键字,将关键字用“|”分割写入到txt文件中。 要求完整可用, 谢谢!
txt 写入是覆盖方式, 意义就是更新里面的关键字。
<?php $str_buff = @file_get_contents("http://top.baidu.com/buzz/top10.html"); preg_match_all("/<td class=\"key\"><a href=\"(.*)\" target=\"_blank\">(.[^<]*)<\/a><\/td>/i", $str_buff, $arr_infos); @file_put_contents("info.txt", implode("|",$arr_infos[2])); ?> 每个1小时执行可以用windows的task schedule或linux的crontab按时调用就可以了。