文件我知道,追加到一個文件,我需要這樣做:追加與單一功能
fopen('file.txt', a);
fwrite('file.txt', 'stuff');
fclose('file.txt');
,但我可以用一個函數來完成它,就像file_append_contents('file.txt', 'stuff')
?
編輯:我知道關於file_put_contents()
,但iirc覆蓋整個文件。
文件我知道,追加到一個文件,我需要這樣做:追加與單一功能
fopen('file.txt', a);
fwrite('file.txt', 'stuff');
fclose('file.txt');
,但我可以用一個函數來完成它,就像file_append_contents('file.txt', 'stuff')
?
編輯:我知道關於file_put_contents()
,但iirc覆蓋整個文件。
您應該使用file_put_contents
與FILE_APPEND
選項。
file_put_contents('/path/to/filename', $data, FILE_APPEND);
使用
file_put_contents('file1.txt',file_get_contents('file2.txt'));
[**'file_put_contents()'**](http://php.net/manual/en/function.file-put-contents.php) – user1978142