标签:lse director dir ali 失败 cti 函数 test href
ftp_cdup() 函数把当前目录改变为 FTP 服务器上的父目录。
如果成功,该函数返回 TRUE。如果失败,则返回 FALSE。
参数 | 描述 |
---|---|
ftp_connection | 必需。规定要使用的 FTP 连接。 |
<?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); echo "<br />"; //Change current directory to parent directory ftp_cdup($conn); echo "Dir: ".ftp_pwd($conn); ftp_close($ftp_server); ?>
上面的代码将输出:
Dir: / Dir: /images Dir: /
标签:lse director dir ali 失败 cti 函数 test href
原文地址:https://www.cnblogs.com/furuihua/p/11691217.html