ftp_chdir() 函数改变 FTP 服务器上的当前目录为指定目录。
如果成功,该函数返回 TRUE。如果失败,则返回 FALSE 和一个警告。
ftp_chdir(ftp_connection,directory)
参数 | 描述 |
---|---|
ftp_connection | 必需。规定要使用的 FTP 连接。 |
directory | 必需。规定要切换到的目录。 |
<?php$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");ftp_login($conn,"admin","ert456");//Outputs the current directoryecho "Dir: ".ftp_pwd($conn);echo "<br />";//Change to the images directoryftp_chdir($conn,"images");echo "Dir: ".ftp_pwd($conn);ftp_close($ftp_server);?>
上面的代码将输出:
Dir: /Dir: /images