gpt4 book ai didi

php - 使用 file_get_contents 跳过行?

转载 作者:可可西里 更新时间:2023-11-01 00:26:40 26 4
gpt4 key购买 nike

我试图跳过前两行(从读取 3 个文件)然后保存回来(我已经完成了这个,剩下的就是跳过行)

有什么办法吗?

最佳答案

这是一种方法。也许这有点矫枉过正,因为它不是很有效。 (使用 file() 会更快)

$content = file_get_contents($filename);
$lines = explode("\n", $content);
$skipped_content = implode("\n", array_slice($lines, 2));

关于php - 使用 file_get_contents 跳过行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5008845/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com