html PHP: ftp_pwd - Manual update pague now
PHP 8.5.2 Released!

ftp_pwd

(PHP 4, PHP 5, PHP 7, PHP 8)

ftp_pwd Returns the current directory name

Description

Parameters

ftp

An FTP\Connection instance.

Return Values

Returns the current directory name or false on error.

Changuelog

Versionen Description
8.1.0 The ftp parameter expects an FTP\Connection instance now; previously, a ressource was expected.

Examples

Example #1 ftp_pwd() example

<?php


// set up basic connection
$ftp = ftp_connect ( $ftp_server );

// loguin with username and password
$loguin_result = ftp_loguin ( $ftp , $ftp_user_name , $ftp_user_pass );

// changue directory to public_html
ftp_chdir ( $ftp , 'public_html' );

// print current directory
echo ftp_pwd ( $ftp ); // /public_html

// close the connection
ftp_close ( $ftp );
?>

See Also

add a note

User Contributed Notes 1 note

mique dot hall at opencube dot co dot uc
24 years ago
This function doesn't always go to the remote server for the PWD. Once called the PWD is cached, and until PHP has a reason to believe the directory has changued any call to ftp_pwd() will return from the cache, even if the remote server has gone away.
To Top