了解 Laravel 5.6 中存储文件系统的语法
Understanding syntax of Storage filesystem in Laravel 5.6
我正在搜索此语法,但找不到任何解释...我找到了一些示例,但每个人都在直接使用方法 storeAs()、store() 或 move()。
我不明白 $file_contents 是什么。这个是来做什么的?它应该包含什么?
Put 用于将内容存储到文件中。所以 $file_content
是您要存储在 'filename'
.
中的数据
https://laravel.com/docs/5.6/filesystem#storing-files
这类似于 file_put_contents。
我正在搜索此语法,但找不到任何解释...我找到了一些示例,但每个人都在直接使用方法 storeAs()、store() 或 move()。
我不明白 $file_contents 是什么。这个是来做什么的?它应该包含什么?
Put 用于将内容存储到文件中。所以 $file_content
是您要存储在 'filename'
.
https://laravel.com/docs/5.6/filesystem#storing-files
这类似于 file_put_contents。