Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ftp - adapter disconnect()(ストレージ ライブラリ)?
disconnect()
私はこのようなことをします:
$ftp = Storage::disk('ftp'); $ftp->makeDirectory('test'); $ftp->disconnect(); // this does not work...
誰かアイデアがありますか?
メソッドを呼び出したい場合は、次のdisconnect()ことができる必要があります。
$ftp->getDriver()->getAdapter()->disconnect();
お役に立てれば!