答案 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);