Change directory, then output directory name:
<?php
// connect and login to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
$login = ftp_login($ftp_conn, $ftp_username, $ftp_userpass);
// change the current directory to php
ftp_chdir($ftp_conn, "php");
// output current directory name (/php)
echo ftp_pwd($ftp_conn);
// close connection
ftp_close($ftp_conn);
?>
The ftp_pwd() function returns the current directory name.
ftp_pwd(
ftp_conn);
Parameter | Description |
---|---|
ftp_conn | Required. Specifies the FTP connection to use |
Return Value: | The current directory name on success, FALSE on failure |
---|---|
PHP Version: | 4+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!