【发布时间】:2017-05-19 05:19:29
【问题描述】:
有没有办法在 ftp 适配器(存储库)上调用 disconnect()(在 flysystem 中存在此函数,https://github.com/thephpleague/flysystem/blob/master/src/Adapter/Ftp.php#L189)函数?
我会这样做:
$ftp = Storage::disk('ftp');
$ftp->makeDirectory('test');
$ftp->disconnect(); // this does not work...
有人有想法吗?
【问题讨论】:
标签: php laravel ftp storage thephpleague