ftp_base::PopError()publicWP 1.0

Rcupre une erreur externe

Method of the class: ftp_base{}

No Hooks.

Return

null. Nothing (null).

Usage

$ftp_base = new ftp_base();
$ftp_base->PopError();

ftp_base::PopError() code WP 6.5.2

function PopError(){
	if(count($this->_error_array)) return(array_pop($this->_error_array));
		else return(false);
}