使用PHP创建目录


creating directory using PHP

我需要使用php创建一个具有写权限的目录…目前我使用以下代码

$folder_name = $this->input->post('foldername', true);
$path = '/home/temp/workspace/My_folder/documents/'.$folder_name;
mkdir($path,'0222');

但这是不工作…

您的应用程序(可能是Apache)是否有权在该目录中写入?目录是否存在?

试试这个:

$path = '/home/temp/workspace/My_folder/documents/'.$folder_name;
mkdir($path, 0222, $recursive=true);