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