欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP采集代码实例_PHP教程

程序员文章站 2022-04-29 14:45:23
...
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)); //内容当然不可以少
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/371583.htmlTechArticle?php function preg_substr($start, $end, $str) // 正则截取函数 { $temp = preg_split($start, $str); $content = preg_split($end, $temp[1]); return $content[0]; } function str_su...