ftp_pure::_data_close()publicWP 1.0

Method of the class: ftp_pure{}

No Hooks.

Return

null. Nothing (null).

Usage

$ftp_pure = new ftp_pure();
$ftp_pure->_data_close();

ftp_pure::_data_close() code WP 6.6.2

function _data_close() {
	@fclose($this->_ftp_data_sock);
	$this->SendMSG("Disconnected data from remote host");
	return TRUE;
}