>php教程 >php手册 >PHP采集代码实例

PHP采集代码实例

WBOY
WBOY원래의
2016-06-13 11:34:531065검색

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://www.bkjia.com"));   
echo ('标题: ' . str_substr("", "", $str)); // 通过字符串提取标题  
echo ('作者: ' . preg_substr("/userid=d+">/", "//", $str)); // 通过正则提取作者  
echo ('内容: ' . str_substr('

', '
', $str)); //内容当然不可以少  
?>
   

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.