The content of this article is about how to create a file directory in PHP? (Pure code), it has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
//创建目录 /* * @param createfile //创建文件夹 * @param createpath // 创建的路径 * @param file_exists() // 查看是否文件夹有同样的目录 * @param file // 创建的的路径 基于文件夹 ./Public/Uploads/ 下创建修改 * @param mkdir // 创建文件夹的函数 * @param 2017/11/20 8:57 */ function createfile($file){ $createpath = './Public/Uploads/' . $file; $_createpath = iconv('utf-8', 'gb2312', $createpath); if (file_exists($_createpath) == false) { //检查是否有该文件夹,如果没有就创建,并给予最高权限 if (mkdir($_createpath, 0700, true)) { $value['file'] ='文件夹创建成功'; $value['success']='success'; } else { $value['file'] ='文件夹创建失败'; $value['fail']='fail'; } } else { $value['file'] ='文件夹已存在'; $value['fail']='fail'; } return $value; }
Recommended related articles:
How to use PHP to return json data (code)
How to use PHP To create a soft connection (code)
The above is the detailed content of How to create a file directory in php? (Pure code). For more information, please follow other related articles on the PHP Chinese website!