PHP ftp_chdir() 函数
PHP ftp_chdir() 函数
完整的 PHP FTP 参考手册定义和用法
ftp_chdir() 函数改变 FTP 服务器上的当前目录为指定目录。
如果成功,该函数返回 TRUE。如果失败,则返回 FALSE 和一个警告。
语法
ftp_chdir(ftp_connection,directory)
参数 | 描述 |
---|---|
ftp_connection | 必需。规定要使用的 FTP 连接。 |
directory | 必需。规定要切换到的目录。 |
实例
<?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($ftp_server);
?>
$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($ftp_server);
?>
上面的代码将输出:
Dir: /
Dir: /images
Dir: /images
完整的 PHP FTP 参考手册
相关文章
- PHP If Else 语句
- PHP 魔术常量
- PHP $_GET 变量
- PHP 发送电子邮件
- PHP Secure E-mails
- PHP 高级过滤器
- PHP array_diff() 函数
- PHP array_diff_key() 函数
- PHP array_fill_keys() 函数
- PHP array_key_first() 函数
- PHP array_merge_recursive() 函数
- PHP array_replace_recursive() 函数
- PHP array_values() 函数
- PHP array_walk_recursive() 函数
- PHP extract() 函数
- PHP in_array() 函数
- PHP shuffle() 函数
- PHP uksort() 函数
- PHP usort() 函数
- PHP Mail 函数