加入收藏 | 设为首页 | 会员中心 | 我要投稿 源码门户网 (https://www.92codes.com/)- 云服务器、云原生、边缘计算、云计算、混合云存储!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

PHP采集代码分析

发布时间:2023-12-29 15:10:10 所属栏目:PHP教程 来源:DaWei
导读: PHP采集代码实例,支持正则表达式设置从开始到结束区域,代码如下:

<?php
function preg_substr($start, $end, $str) // 正则截取函数
{
$temp = preg_split($st
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("https://www.mycodes.net"));   
echo ('标题: ' . str_substr("<title>", "</title>", $str)); // 通过字符串提取标题  
echo ('作者: ' . preg_substr("/userid=/d+/">/", "/<///", $str)); // 通过正则提取作者  
echo ('内容: ' . str_substr('<div class="content">', '</div>', $str)); //内容当然不可以少  
?>   
 

(编辑:源码门户网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章