rename() 函数可以重命名文件或目录,该函数可以在成功时返回 true,在失败时返回 false。
用法
bool rename ( string $oldname , string $newname [, resource $context ] )
此函数可以尝试将 oldname 重命名为 newname,必要时在目录之间移动它。如果重命名文件并且存在新名称,则可以覆盖它。如果重命名目录并且存在新名称,则此函数会发出警告。
示例
<?php
rename("/PhpProject/sample.txt", "/PhpProject/php/sample1.txt");
echo "file renamed successfully";
?>
输出
file renamed successfully
相关用法
- PHP rename()用法及代码示例
- 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 - Function rename()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。