What is the best way to write a large file to disk in PHP?

后端 未结 3 1548
温柔的废话
温柔的废话 2020-12-14 10:49

I have a PHP script that occasionally needs to write large files to disk. Using file_put_contents(), if the file is large enough (in this case around 2 MB), the

3条回答
  •  北荒
    北荒 (楼主)
    2020-12-14 11:15

    Writing line by line (or packet by packet in case of binary files) using functions like fwrite()

提交回复
热议问题