使用PHP可以通过以下几种方式删除指定文件的内容:
file_put_contents()
函数将空字符串写入指定文件,覆盖原有内容。这将删除文件中的所有内容。file_put_contents('path/to/file.txt', '');
ftruncate()
函数截断指定文件到指定长度,可以设置长度为0来删除文件内容。$fp = fopen('path/to/file.txt', 'r+');
ftruncate($fp, 0);
fclose($fp);
unlink()
函数删除指定文件,然后重新创建该文件。unlink('path/to/file.txt');
file_put_contents('path/to/file.txt', '');
注意:以上方法都会删除文件中的内容,但不会删除文件本身。