通过简单的搜索就很容易找到它。
在您的index.php中添加以下3行。
$app = require_once __DIR__.'/../bootstrap/app.php';// set the public path to this directory$app->bind('path.public', function() { return __DIR__;});
编辑:
正如Burak Erdem提到的,另一个选择(也是更可取的)是将其放入
AppProvidersAppServiceProvider
register()方法中。
public function register(){ // ... $this->app->bind('path.public', function() { return base_path('public_html'); });}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)