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);