求php  新闻自动采集源码

解决方案 »

  1.   

    <?php     
    header("content-Type: text/html; charset=utf-8");  
    function preg_substr($start, $end, $str) // 正则截取函数        
    {        
        $temp = preg_split($start, $str);        
        $content = preg_split($end, $temp[1]);        
        return $content[0];        
    }     
    function str_substr($start, $end, $str) // 字符串截取函数        
    {        
        $temp = explode($start, $str, 2);        
        $content = explode($end, $temp[1], 2);        
        return $content[0];       
    }     
      
    // ---------------- 使用实例 ----------------     
    $str = iconv("GB2312","UTF-8",  file_get_contents("http://www.037c.com/New/5.html"));      
    echo ('标题: ' . str_substr("<title>", "</title>", $str)); // 通过字符串提取标题     
    echo ('作者: ' . preg_substr("/作者:/", "/<\//", $str)); // 通过正则提取作者     
    echo ('内容: ' . str_substr('<div class="wltg">', '</div>', $str)); //内容当然不可以少     
    ?>