Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | ITEYE 博客 | OSChina 博客 | Facebook | Linkedin | 知乎專欄 | Search | Email

3.11. 檔案操作

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