PHP ftp_pwd() 函数
PHP ftp_pwd() 函数
完整的 PHP FTP 参考手册定义和用法
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);
?>
$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
/images
完整的 PHP FTP 参考手册
相关文章
- PHP 变量
- PHP EOF(heredoc) 使用说明
- PHP 数据类型
- PHP 魔术常量
- PHP array() 函数
- PHP array_diff() 函数
- PHP array_diff_uassoc() 函数
- PHP array_filter() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_intersect_ukey() 函数
- PHP array_reduce() 函数
- PHP array_sum() 函数
- PHP array_udiff_uassoc() 函数
- PHP array_walk() 函数
- PHP asort() 函数
- PHP list() 函数
- PHP rsort() 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数