在PHP中,有多种方法可以删除文件,包括:
$file = 'path/to/file.txt';
if (unlink($file)) {
echo '文件删除成功';
} else {
echo '文件删除失败';
}
$file = 'path/to/file.txt';
if (file_exists($file)) {
if (unlink($file)) {
echo '文件删除成功';
} else {
echo '文件删除失败';
}
} else {
echo '文件不存在';
}
$file = 'path/to/file.txt';
if (is_file($file)) {
if (unlink($file)) {
echo '文件删除成功';
} else {
echo '文件删除失败';
}
} else {
echo '文件不存在';
}
$file = 'path/to/file.txt';
if (file_exists($file) && is_writable($file)) {
if (unlink($file)) {
echo '文件删除成功';
} else {
echo '文件删除失败';
}
} else {
echo '文件不存在或不可写';
}