ftp_sockets::_data_close()publicWP 1.0

Method of the class: ftp_sockets{}

No Hooks.

Return

null. Nothing (null).

Usage

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

ftp_sockets::_data_close() code WP 6.5.2

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