例
重命名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_connection,oldname,newname );
參數 | 描述 |
---|---|
ftp_connection | 需要。 指定FTP連接使用 |
oldname | 需要。 指定的文件或目錄重命名 |
newname | 需要。 指定文件或目錄的新名稱 |
技術細節
返回值: | 返回TRUE或FALSE的成功失敗 |
---|---|
PHP版本: | 4+ |
<PHP FTP參考