输出当前目录名,然后切换到父目录:
<?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");
// change to the parent directory
if (ftp_cdup($ftp_conn))
{
echo "Successfully changed to parent directory.";
}
else
{
echo "cdup failed.";
}
// output current directory name
echo ftp_pwd($ftp_conn);
// close connection
ftp_close($ftp_conn);
?>
ftp_cdup() 函数更改到 FTP 服务器上的父目录。
ftp_cdup(
ftp_conn);
Parameter | Description |
---|---|
ftp_conn | Required. Specifies the FTP connection to use |
返回值: | TRUE 成功,FALSE 失败 |
---|---|
PHP 版本: | 4+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!