日期:2012-03-24  浏览次数:20492 次

  1. <?php    
  2. /****************************************************     
  3. program : Spr2[search_html]     
  4. Author  : uchinaboy      
  5. E-mail  : uchinaboy@163.com     
  6. QQ      : 16863798     
  7. Date    : 2001-8-9    
  8. ****************************************************/    
  9. //require("config.inc.php");    
  10.  
  11. function get_msg($path) {    
  12. global $key$i;    
  13. $handle = opendir($path);    
  14. while ($filename = readdir($handle)) {    
  15. //echo $path."/".$filename."<br>";    
  16. $newpath = $path."/".$filename;    
  17. $check_type = preg_match("/\.html?$/"$filename);    
  18. if (is_file($newpath) && $check_type) {    
  19. $fp = fopen($newpath"r");    
  20. $msg = fread($fpfilesize($newpath));    
  21. fclose($fp);    
  22. match_show($key$msg$newpath$filename);    
  23. }    
  24. if (is_dir($path."/".$filename) && ($filename != "."