如何检查文件名是否存在,重命名文件?
例如,1086_002.jpg
如果文件存在,我上传图像,将文件重命名为1086_0021.jpg
并保存,如果1086_0021.jpg
存在,重命名1086_00211.jpg
并保存,如果1086_00211.jpg
存在,重命名1086_002111.jpg
并保存...
这是我的代码,它只有在1086_002.jpg
存在的情况下才能执行,将文件重命名为1086_0021.jpg
,也许应该做一个 foreach,但是如何?
//$fullpath = 'images/1086_002.jpg';
if(file_exists($fullpath)) {
$newpieces = explode(".", $fullpath);
$frontpath = str_replace('.'.end($newpieces),'',$fullpath);
$newpath = $frontpath.'1.'.end($newpieces);
}
file_put_contents($newpath, file_get_contents($_POST['upload']));