3.11.檔案操作

玄學醬發表於2017-12-27

3.11.1. file_put_contents

			
			

建立檔案或覆蓋操作

			
<?php
echo file_put_contents("test.txt", "This is something.");
?>			
			
			

追加操作

			
<?php
file_put_contents("test.txt", "This is another something.", FILE_APPEND);
?>			
			
			

原文出處:Netkiller 系列 手札
本文作者:陳景峰
轉載請與作者聯絡,同時請務必標明文章原始出處和作者資訊及本宣告。