重命名 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);
?>
ftp_rename() 函数重命名 FTP 服务器上的文件或目录。
ftp_rename(
ftp_conn, oldname, newname);
Parameter | Description |
---|---|
ftp_conn | Required. Specifies the FTP connection to use |
oldname | Required. Specifies the file or directory to rename |
newname | Required. Specifies the new name of the file or directory |
返回值: | TRUE 成功,FALSE 失败 |
---|---|
PHP 版本: | 4+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!