了解Laravel 5.6中存储文件系统的语法

时间:2018-07-08 13:57:29

标签: laravel local-storage laravel-5.6 laravel-filesystem

enter image description here

我正在搜索这种语法,但找不到任何解释...我找到了一些示例,但是每个人都立即使用storeAs(),store()或move()方法。

我不明白什么是$ file_contents。这个是来做什么的?它应该包含什么?

1 个答案:

答案 0 :(得分:0)

Put用于将内容存储在文件中。因此,$file_content是您要存储在'filename'中的数据。

https://laravel.com/docs/5.6/filesystem#storing-files

这类似于file_put_contents。