已经问过相同的问题,但是对于其他语言,但是我需要PHP。 我想创建一个文件夹(按人名)以使用PHP mkdir()函数上传图像。如果人名是“ danny”,则文件夹名将是“ danny”。如果“ danny”文件夹已经存在,则新文件夹的名称应为“ danny1”。如果还存在“ danny1”,则新文件夹的名称应为“ danny2”,依此类推。代码是什么。
<?php
$folder = 'commentators/danny/';
if(!is_dir($folder)){
mkdir($folder, 755, true);
}else{
//what will be the code for danny1.....if danny1 also exists then it should be danny2
}
?>