ftp_pure::_quit()
Method of the class: ftp_pure{}
No Hooks.
Return
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.7.1
function _quit($force=FALSE) { if($this->_connected or $force) { @fclose($this->_ftp_control_sock); $this->_connected=false; $this->SendMSG("Socket closed"); } }