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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。