Laravel 存储 ftp 断开连接

Laravel storage ftp disconnect

有没有办法在 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...

有人知道吗?

如果您想调用 disconnect() 方法,您应该能够:

$ftp->getDriver()->getAdapter()->disconnect();

希望对您有所帮助!