ftp_pure::_quit

Advertisement

Syntax Syntax

ftp_pure::_quit( $force = FALSE )

Source Source

File: wp-admin/includes/class-ftp-pure.php

	function _quit($force=FALSE) {
		if($this->_connected or $force) {
			@fclose($this->_ftp_control_sock);
			$this->_connected=false;
			$this->SendMSG("Socket closed");
		}
	}

Advertisement

Advertisement

Leave a Reply