function createFolder($path)
{
if (!file_exists($path))
{
createFolder(dirname($path));
mkdir($path, 0777)
}
}
createFolder("2007 / 3/4");//カレントディレクトリに2007/3/4のディレクトリ構造を作成します。
http://www.bkjia.com/PHPjc/318972.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/318972.html技術記事 functioncreateFolder($path) { if(!file_exists($path)) { createFolder(dirname($path)) } } createFolder("2007/3/4");現在時刻 ディレクトリの下に 2007/3/4 のディレクトリ構造を作成します...