PHP ftp_rename() 函数
实例
重命名 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);
$old_file = "oldfile.txt";
$new_file = "newfile.txt";
// try to rename $old_file to $new_file
if (ftp_rename($ftp_conn, $old_file, $new_file))
{
echo "Renamed $old_file to $new_file";
}
else
{
echo "Problem renaming $old_file to $new_file";
}
// 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);
$old_file = "oldfile.txt";
$new_file = "newfile.txt";
// try to rename $old_file to $new_file
if (ftp_rename($ftp_conn, $old_file, $new_file))
{
echo "Renamed $old_file to $new_file";
}
else
{
echo "Problem renaming $old_file to $new_file";
}
// close connection
ftp_close($ftp_conn);
?>
定义和用法
ftp_rename() 函数更改 FTP 服务器上的文件或目录名。
如果成功,则返回 true,否则返回 false。
语法
ftp_rename(ftp_conn, oldname, newname);
参数值
参数 | 描述 |
---|---|
ftp_conn | 必需。规定要使用的 FTP 连接(FTP 连接的标识符)。 |
oldname | 必需。规定要改名的文件或目录。 |
newname | 必需。规定文件或目录的新名称。 |
技术细节
返回值: | 如果成功则返回 TRUE,如果失败则返回 FALSE |
---|---|
PHP 版本: | 4+ |