阅读(835) (6)

Laravel 8 文件数据写入

2021-07-02 16:48:57 更新

prependappend 方法允许您在文件的开头和末尾写入数据:

Storage::prepend('file.log', 'Prepended Text');

Storage::append('file.log', 'Appended Text');