要清空文件的內容,可以使用PHP中的file_put_contents函數,并將其第二個參數設置為空字符串或者使用fopen函數打開文件并設置為寫入模式,然后使用fwrite函數將文件內容設置為空字符串。
以下是兩種方法:
方法一:使用file_put_contents函數
$file = 'example.txt';
file_put_contents($file, ''); // 清空文件內容
方法二:使用fopen和fwrite函數
$file = 'example.txt';
$handle = fopen($file, 'w');
fwrite($handle, ''); // 清空文件內容
fclose($handle);
這樣就可以清空文件的內容了。