gpt4 book ai didi

php 创建给定大小的文件

转载 作者:可可西里 更新时间:2023-11-01 12:48:45 27 4
gpt4 key购买 nike

我如何在 PHP 中创建一个给定大小的文件(无论内容如何)?

我必须创建一个大于 1GB 的文件。最大大约 4-10GB

最佳答案

您可以使用 fopenfseek

define('SIZE',100); // size of the file to be created.
$fp = fopen('somefile.txt', 'w'); // open in write mode.
fseek($fp, SIZE-1,SEEK_CUR); // seek to SIZE-1
fwrite($fp,'a'); // write a dummy char at SIZE position
fclose($fp); // close the file.

执行时:

$ php a.php

$ wc somefile.txt
0 1 100 somefile.txt
$

关于php 创建给定大小的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3608383/

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