目录

PHP ftp_chdir() 函数

❮ PHP FTP 参考

示例

更改目录,然后输出目录名称:

<?php
// connect and login to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
$login = ftp_login($ftp_conn, $ftp_username, $ftp_userpass);

// change the current directory to php
ftp_chdir($ftp_conn, "php");

// output current directory name (/php)
echo ftp_pwd($ftp_conn);

// close connection
ftp_close($ftp_conn);
?>

定义和用法

ftp_chdir() 函数更改 FTP 服务器上的当前目录。

语法

ftp_chdir( ftp_conn, directory);

参数值

Parameter Description
ftp_conn Required. Specifies the FTP connection to use
directory Required. Specifies the directory to change to


技术细节

返回值: TRUE 成功,FALSE 失败
PHP 版本: 4+

❮ PHP FTP 参考