例
更改目录,然后输出目录名称:
<?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_connection,directory );
参数 | 描述 |
---|---|
ftp_connection | 需要。 指定FTP连接使用 |
directory | 需要。 指定要更改到目录 |
技术细节
返回值: | 返回TRUE或FALSE的成功失败 |
---|---|
PHP版本: | 4+ |
<PHP FTP参考