html
(PHP 4, PHP 5, PHP 7, PHP 8)
ftp_pwd — Returns the current directory name
Returns the current directory name or
false
on error.
| Versionen | Description |
|---|---|
| 8.1.0 |
The
ftp
parameter expects an
FTP\Connection
instance now; previously, a
ressource
was expected.
|
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
);
?>
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.