Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
.txt 文件大约 500M,当我使用 fopen 时,我的电脑无法工作,所以我想要任何其他方式来完成任务
尝试
$fp = fopen( "file.txt", 'a' ); fwrite( $fp, "\n" ); fclose( $fp );
如果你在 Linux 上运行 PHP 脚本,你可以这样做:
$newLine = 'some text'; $filename = 'large.txt'; system('echo "' . $newLine . '" >> ' . $filename);