熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

PHP采集代碼實例

2022-06-13   來源: PHP編程 

  <?php     
function preg_substr($start $end $str) // 正則截取函數     
{     
    $temp = preg_split($start $str);     
    $content = preg_split($end $temp[]);     
    return $content[];     
}  
function str_substr($start $end $str) // 字符串截取函數     
{     
    $temp = explode($start $str );     
    $content = explode($end $temp[] );     
    return $content[];     
}  
// 使用實例   
$str = iconv("UTF" "GB" file_get_contents("
echo (標題: str_substr("<title>" "</title>" $str)); // 通過字符串提取標題  
echo (作者: preg_substr("/userid=d+">/" "/<//" $str)); // 通過正則提取作者  
echo (內容: str_substr(<div class="content"> </div> $str)); //內容當然不可以少  
?>
   


From:http://tw.wingwit.com/Article/program/PHP/201311/20997.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.