php – 这是检查文件是否存在的正确方法吗?
作者:互联网
我正在尝试检查文件(图像)是否存在,以便我可以在上传新文件之前将其删除.这是我到目前为止所尝试的:
foreach (glob("../imgs/" . $name . ".*") as $file) {
if (file_exists($file)) {
unlink($file);
}
}
这是正确的做法吗?如果找到匹配,我是否需要打破循环?如果该文件夹中有很多图片,这会表现不好吗?
编辑:对不起,我应该提到这一点:在上传时,文件会被用户唯一ID重命名,这就是为什么如果用户想要上传另一个图像我想用现有图像替换它. (此图像用于个人资料图片).
解决方法:
如果你想打破循环,在unlink()函数之后添加一个break语句:
foreach (glob("../imgs/" . $name . ".*") as $file) {
if (file_exists($file)) {
unlink($file);
break;
}
}
如果要检查PHP文件仅存在:
您可以使用file_exist()函数.如果文件存在,则此函数返回TRUE,否则返回FALSE.
$filename = './file_name.txt';
if(file_exists($filename)){
echo sprintf('file %s exists',$filename);
}else{
echo sprintf('file %s does not exist',$filename);
}
如果要检查PHP文件是否存在且可读:
您可以使用is_readable()函数.如果文件存在且可读,则该函数返回TRUE,否则返回FALSE.
$filename = './file_name.txt';
if(is_readable($filename)){
echo sprintf('file %s exists and readable',$filename);
}else{
echo sprintf('file %s does not exist or is not readable',$filename);
}
如果要检查PHP文件是否存在且可写:
您可以使用is_writable()函数.如果文件存在且可写,则函数返回TRUE,否则返回FALSE.
$filename = './file_name.txt';
if(is_writable($filename)){
echo sprintf('file %s exists and writable',$filename);
}else{
echo sprintf('file %s does not exist or is not writable',$filename);
}
标签:file-exists,unlink,php,glob 来源: https://codeday.me/bug/20190724/1521672.html