我可以使用laravel文件系统将文件保存在当前项目之外吗? 我有这个结构:project和cdn。
我尝试过自定义驱动程序但失败了。它不会将任何文件放在cdn文件夹中。
'custom' => [
'driver' => 'local',
'root' => '~/Code/cdn.web/storage',
],
$store = Storage::disk('custom')->put('index.txt', 'contents');
我也按照这个答案Storing files outside the Laravel 5 Root Folder 但是没有自定义驱动程序。
有没有让它运作?
由于
答案 0 :(得分:1)
找到答案。
Laravel在路径上不支持#!/usr/bin/env perl6
use v6;
use Bar::Foo :sub-one, :sub-two;
sub-one();
sub-two();
# sub-three not imported
。
我需要完整的路径让它发挥作用。
~