ftp_sockets::_quit()
Method of the class: ftp_sockets{}
No Hooks.
Return
null
. Nothing (null).
Usage
$ftp_sockets = new ftp_sockets(); $ftp_sockets->_quit();
ftp_sockets::_quit() ftp sockets:: quit code WP 6.6.2
function _quit() { if($this->_connected) { @socket_close($this->_ftp_control_sock); $this->_connected=false; $this->SendMSG("Socket closed"); } }