标签: php laravel-4 directory-structure
我希望网站管理员能够通过用户界面创建视图目录。
以下是细分:
问题是,为了做到这一点,我显然需要chmod 777我的app / views目录。有没有更好的方法通过Laravel生成这个新目录?我应该以不同的方式解决这个问题吗?
答案 0 :(得分:1)
我建议使用存储文件夹或已写入的内容。
以下是创建文件夹的方法
$result = File::makeDirectory(app_path().'/path/to/directory', 0775, true);
源 http://laravel-recipes.com/recipes/147