目录

PHP ftp_rename() 函数

❮ PHP FTP 参考

示例

重命名 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+

❮ PHP FTP 参考