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