ftp_base::pwd()publicWP 1.0

Method of the class: ftp_base{}

No Hooks.

Return

null. Nothing (null).

Usage

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

ftp_base::pwd() code WP 6.5.2

function pwd() {
	if(!$this->_exec("PWD", "pwd")) return FALSE;
	if(!$this->_checkCode()) return FALSE;
	return preg_replace("/^[0-9]{3} \"(.+)\".*$/s", "\\1", $this->_message);
}