我正在尝试在网络服务器上创建一个嵌套目录。代码创建目录 $userID"."_blog_images ok,但不是 post_"."$postID"."_images 目录。我正在使用 Mac。提前致谢。
<?php
//Create user root image directory if it does not exist
if (!is_dir("$userID"."_blog_images")){
mkdir("$userID"."_blog_images");
}
//Create post image directory if it does not exist
if (is_dir("$userID"."_blog_images")){
if (!is_dir("$userID"."_blog_images/post_"."$postID"."_images")){
mkdir("$userID"."_blog_images/post_"."$postID"."_images", 0777, true);
}
}
?>
ibeautiful