laravel文件存储Storage
Posted 与f
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了laravel文件存储Storage相关的知识,希望对你有一定的参考价值。
use Illuminate\Support\Facades\Storage; //建立目录 Storage::disk(‘public‘)->makeDirectory(date(‘Y-m‘)); //存文件 public为config/filesystems.php存的配置 $bool = Storage::disk(‘public‘)->put($filename, file_get_contents($realPath));
可参考:https://d.laravel-china.org/docs/5.5/filesystem
以上是关于laravel文件存储Storage的主要内容,如果未能解决你的问题,请参考以下文章
如何在 laravel 5 中使用 Storage 门面获取文件 URL?