萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> PHP采集代碼實例

PHP采集代碼實例

<?php     
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("UTF-8", "GB2312", file_get_contents("http://."));   
echo ('標題: ' . str_substr("<title>", "</title>", $str)); // 通過字符串提取標題  
echo ('作者: ' . preg_substr("/userid=d+">/", "/<//", $str)); // 通過正則提取作者  
echo ('內容: ' . str_substr('<div class="content">', '</div>', $str)); //內容當然不可以少  
?>
   

copyright © 萬盛學電腦網 all rights reserved