PHP截取内容指定行数之前或之后的内容

远昔 代码记录 2025-04-05 18 0

PHP截取内容指定行数之前或之后的内容

四种方式:

// 保留第3行及之后
sliceLines($content, 3, 'after_inclusive');

// 保留第3行之后(不包含第3行)
sliceLines($content, 3, 'after_exclusive');

// 保留第3行及之前
sliceLines($content, 3, 'before_inclusive');

// 保留第3行之前(不包含第3行)
sliceLines($content, 3, 'before_exclusive');


function sliceLines(string $content, int $target, string $mode = 'after_inclusive', string $eol = null): string{
    if ($target < 1) {
        return $content;
    }

    // 修复点1:补全三元运算符的括号
    $eol = $eol ?? (strpos($content, "\r\n") !== false ? "\r\n" : "\n"); 

    // 分割为行数组(保留空行)
    $lines = preg_split('/\R/', $content);
    
    // 修复点2:添加总行数校验
    $total = count($lines);
    if ($target > $total) {
        return in_array($mode, ['before_inclusive', 'before_exclusive']) ? $content : '';
    }

    // 根据模式计算切片参数
    switch ($mode) {
        case 'after_inclusive':
            $offset = $target - 1;
            $length = null;
            break;
        case 'after_exclusive':
            $offset = $target;
            $length = null;
            break;
        case 'before_inclusive':
            $offset = 0;
            $length = $target;
            break;
        case 'before_exclusive':
            $offset = 0;
            $length = $target - 1;
            break;
        default:
            return $content;
    }

    // 执行数组切片
    $result = array_slice($lines, $offset, $length);
    
    // 还原换行符并返回
    return implode($eol, $result);
}


评论

发表评论:

挤眼 亲亲 咆哮 开心 想想 可怜 糗大了 委屈 哈哈 小声点 右哼哼 左哼哼 疑问 坏笑 赚钱啦 悲伤 耍酷 勾引 厉害 握手 耶 嘻嘻 害羞 鼓掌 馋嘴 抓狂 抱抱 围观 威武 给力
提交评论

清空信息
关闭评论