PHP ftp_cdup() 函数
实例
输出当前目录名,然后切换到父目录:
<?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);
?>
// 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 服务器上的父目录。
若成功,则返回 true。否则返回 false。
语法
ftp_cdup(ftp_conn);
参数值
参数 | 描述 |
---|---|
ftp_conn | 必需。规定要使用的 FTP 连接(FTP 连接的标识符)。 |
技术细节
返回值: | 如果成功则返回 TRUE,如果失败则返回 FALSE |
---|---|
PHP 版本: | 4+ |