NukeViet\Ftp\Ftp::chdir PHP 메소드

chdir() 공개 메소드

public chdir ( mixed $path )
$path mixed
    public function chdir($path)
    {
        if (!$this->check_login()) {
            return false;
        }
        if (ftp_chdir($this->conn_id, $path) === false) {
            return false;
        }
        return true;
    }