擦除txt文件中的所有数据 - php

时间:2011-04-13 14:33:25

标签: php

  

可能重复:
  How do i purge the contents of a text file in php

您好..

如何使用php删除文本文件myfile.txt中存储的所有数据(空白)?

6 个答案:

答案 0 :(得分:10)

在这种情况下,PHP的file_put_contents()应该很有用。这是一些示例代码:

file_put_contents('myfile.txt', '');

答案 1 :(得分:8)

$handle = fopen ("/path/to/file.txt", "w+");
fclose($handle);

请查看documentation以获取更多信息。

答案 2 :(得分:4)

<?php
file_put_contents("myfile.txt", "");
?>

答案 3 :(得分:2)

$file = fopen('myfile.txt', 'w');
fclose($file);

答案 4 :(得分:0)

$handle = fopen("myfile.txt", "w+");
fwrite($handle , '');
fclose($handle);

答案 5 :(得分:0)

$myFile = "myFile.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
fwrite($fh, "");
fclose($fh);