P粉5613239752023-10-27 11:36:14
如果檔案的內容不相關,則只需填充它 - 但請確保不會產生太大而無法保存在記憶體中的變數:
<?php $fh = fopen("somefile", 'w'); $size = 1024 * 1024 * 10; // 10mb $chunk = 1024; while ($size > 0) { fputs($fh, str_pad('', min($chunk,$size))); $size -= $chunk; } fclose($fh);
如果檔案必須被其他東西讀取 - 那麼你如何做到這一點取決於需要讀取它的其他東西。
C.
P粉0396331522023-10-27 09:16:19
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 $