php如何删除文件或者覆写文件
时间: 2023-12-14 18:13:35 浏览: 129
要删除文件,可以使用PHP内置函数unlink(),例如:
```php
$file_path = "/path/to/file.txt";
if (file_exists($file_path)) {
unlink($file_path);
echo "File deleted successfully.";
} else {
echo "File does not exist.";
}
```
要覆写文件,可以使用PHP内置函数file_put_contents(),例如:
```php
$file_path = "/path/to/file.txt";
$new_content = "This is the new content.";
if (file_put_contents($file_path, $new_content) !== false) {
echo "File updated successfully.";
} else {
echo "Failed to update file.";
}
```
这个函数会将指定文件的内容覆盖为新的内容。如果文件不存在则会创建一个新文件。
阅读全文