fputs函數用于將內容寫入文件,語法如下:
fputs(file, string, length);
其中,file為文件指針,指向要寫入的文件;string為要寫入的內容;length為要寫入的長度,可選參數。
示例:
$file = fopen("test.txt", "w");
$content = "Hello, World!";
fputs($file, $content);
fclose($file);
上面的代碼將字符串"Hello, World!"寫入了test.txt文件中。注意,在使用fputs函數寫入文件后,需要調用fclose函數關閉文件。