rename() 函數重命名文件或目錄。該函數在成功時返回 TRUE,在失敗時返回 FALSE。
用法
rename(old_filename, new_filename, context)
參數
old_filename −文件或目錄的舊名稱。
new_filename −文件或目錄的新名稱。
context −指定流的行為。
返回
rename() 函數在成功時返回 TRUE,在失敗時返回 FALSE。
示例
<?php
rename("one.txt","two.txt");
?>
輸出
TRUE
讓我們再看一個例子。
示例
<?php
rename("D:\new\tutorials\java.docx","D:\new\tutorials\programming\java.docx");
?>
輸出
TRUE
相關用法
- PHP rename( )用法及代碼示例
- PHP restore_error_handler()用法及代碼示例
- PHP restore_exception_handler()用法及代碼示例
- PHP readfile( )用法及代碼示例
- PHP rewind( )用法及代碼示例
- PHP realpath_cache_get()用法及代碼示例
- PHP realpath( )用法及代碼示例
- PHP rewinddir()用法及代碼示例
- PHP read_exif_data()用法及代碼示例
- PHP readfile()用法及代碼示例
- PHP rewind()用法及代碼示例
- PHP reset()用法及代碼示例
- PHP readdir()用法及代碼示例
- PHP rmdir()用法及代碼示例
- PHP round()用法及代碼示例
- PHP random_int()用法及代碼示例
- PHP round( )用法及代碼示例
注:本文由純淨天空篩選整理自Samual Sam大神的英文原創作品 rename() function in PHP。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。