gpt4 book ai didi

php - 在php中按字节数获取文件的一部分

转载 作者:行者123 更新时间:2023-12-02 05:22:44 27 4
gpt4 key购买 nike

我怎样才能让 php 只返回文件的一些字节?比如,我想将字节 7 到 15 加载到一个字符串中,而不读取文件的任何其他部分?重要的是我不需要将所有文件加载到内存中,因为文件可能非常大。

最佳答案

可以用file_get_contents()使用 offset 和 maxlen 参数。

$data = file_get_contents('somefile.txt', false, NULL, 6, 8);

关于php - 在php中按字节数获取文件的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6529405/

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