ftp_pwd() 函数返回指定 FTP 连接的当前目录名称。
ftp_pwd(ftp_connection)
参数 | 描述 |
---|---|
ftp_connection | 必需。规定要使用的 FTP 连接。 |
<?php $conn = ftp_connect("ftp.testftp.com") or die("Could not connect"); ftp_login($conn,"admin","ert456"); // print current directory echo ftp_pwd($conn) . "<br />"; // change directory to images ftp_chdir($conn,"images"); // print current directory echo ftp_pwd($conn); ftp_close($conn); ?>
上面的代码将输出:
/ /images
在线实例
字符集 & 工具
最新更新
站点信息
关注我们