function createFolder($path){ if (!file_exists($path)) { createFolder(dirname($path));
mkdir($path, 0777); }}createFolder("2007/3/4");//在当前目录下创建2007/3/4的目录结构.
posted on 2008-06-05 17:06 王峰炬 阅读(99) 评论(0) 编辑 收藏 举报