PHP创建文件夹

<?php$testdir="./1/";$testdir="./1/2";echo$testdir;if(file_exists($testdir)):else:mkd... <?php
$testdir="./1/";
$testdir="./1/2";
echo $testdir;
if(file_exists ($testdir)):
else:
mkdir ($testdir, 0777);
endif;
?>
问一下 $testdir="./1/";就可以创建 可是加一层目录就不成 谁可以帮帮我
展开
 我来答
爱生活的豆儿酱
2008-07-09 · TA获得超过162个赞
知道小有建树答主
回答量:335
采纳率:100%
帮助的人:180万
展开全部
递归。
function createFolder($path)
{
if (!file_exists($path))
{
createFolder(dirname($path));
mkdir($path, 0777);
}
}
createFolder("aa/bb/cc/dd/ee");
北京张巍cd2
2013-03-13
知道答主
回答量:1
采纳率:0%
帮助的人:1521
展开全部
bool mkdir ( string$pathname [, int$mode [, bool$recursive [, resource$context ]]] )

5.0.0 The recursive parameter was added
说明:
到5.0版本后,这个函数就已经支持递归创建 ,是第三个参数, 默认是bool ,改成ture就行

例如;
<?php
// Desired folder structure
$structure = './depth1/depth2/depth3/';

// To create the nested structure, the $recursive parameter
// to mkdir() must be specified.

if (!mkdir($structure, 0, true)) {
die('Failed to create folders...');
}

?>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式