ftp_pure::_data_write

Advertisement

Syntax Syntax

ftp_pure::_data_write( $mode = FTP_ASCII,  $fp = NULL )

Source Source

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

	function _data_write($mode=FTP_ASCII, $fp=NULL) {
		if(is_resource($fp)) $out=0;
		else $out="";
		if(!$this->_passive) {
			$this->SendMSG("Only passive connections available!");
			return FALSE;
		}
		if(is_resource($fp)) {
			while(!feof($fp)) {
				$block=fread($fp, $this->_ftp_buff_size);
				if(!$this->_data_write_block($mode, $block)) return false;
			}
		} elseif(!$this->_data_write_block($mode, $fp)) return false;
		return TRUE;
	}

Advertisement

Advertisement

Leave a Reply