ftp_base::pwd() –

You appear to be a bot. Output may be restricted

Description

Usage

ftp_base::pwd();

Parameters

Returns

void

Source

File name: wordpress/wp-admin/includes/class-ftp.php
Lines:

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

 View on GitHub View on Trac