以下代码给了我错误:“mkdir:文件存在”。
$path = 'c://wamp/www/et1/other';
$new_location = 'c://wamp/www/et1/other/test';
if(file_exists($path) && is_dir($path))
{
if(!file_exists($new_location))
{
mkdir($new_location, 0777);
}
}
但是,如果我不设置第二个 if 条件,它会给我错误:“mkdir:没有这样的文件或目录”。此外,如果我通过编写 mkdir($new_location,077,true) 添加递归性,我不会收到错误,但不会创建目录。我只是不明白我在这里做错了什么。