PHP ftp_pwd() 函数
定义和用法
ftp_pwd() 函数返回当前目录名。
语法
- ftp_pwd(ftp_connection)
参数 | 描述 |
---|---|
ftp_connection | 必需。规定要使用的 FTP 连接(FTP 连接的标识符)。 |
例子
- <?php
- $conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
- ftp_login($conn,"admin","ert456");
- // 输出当前目录
- echo
ftp_pwd($conn)
. "<br />";- // 把目录改为 images
- ftp_chdir($conn,"images");
- // 输出当前目录
- echo ftp_pwd($conn);
- ftp_close($conn);
- ?>