ftp_pure::_quit
Method of the class: ftp_pure{}
No Hooks.
Returns
null. Nothing (null).
Usage
$ftp_pure = new ftp_pure(); $ftp_pure->_quit( $force );
- $force
- .
Default: FALSE
ftp_pure::_quit() ftp pure:: quit code WP 6.9
function _quit($force=FALSE) {
if($this->_connected or $force) {
@fclose($this->_ftp_control_sock);
$this->_connected=false;
$this->SendMSG("Socket closed");
}
}