阅读量:0
是的,PHP的fwrite()
函数可以处理大文件。但是,为了避免内存不足的问题,你需要以分块的方式读取和写入大文件。以下是一个使用fwrite()
处理大文件的示例:
<?php // 打开一个大文件以供写入 $filename = 'large_file.txt'; $handle = fopen($filename, 'wb'); if (!$handle) { die('Error opening file: ' . $filename); } // 要写入大文件的数据 $data = 'This is a large amount of data to write to the file.'; // 将数据分块写入文件 $chunkSize = 1024 * 1024; // 每次写入1MB(1024KB) while (!feof($handle)) { fwrite($handle, substr($data, 0, $chunkSize)); $data = substr($data, $chunkSize); } // 关闭文件 fclose($handle); ?>
这个示例中,我们将数据分块(每次1MB)写入大文件。这样可以避免一次性加载整个文件到内存中,从而减少内存使用。