目录

PHP rename() 函数

❮ PHP 文件系统参考

示例

重命名目录+文件:

<?php
rename("images","pictures");
rename("/test/file1.txt","/home/docs/my_file.txt");
?>


定义和用法

rename() 函数重命名文件或目录。

语法

rename( old, new, context)

参数值

Parameter Description
old Required. Specifies the file or directory to be renamed
new Required. Specifies the new name for the file or directory
context Optional. Specifies the context of the file handle. Context is a set of options that can modify the behavior of a stream


技术细节

返回值: TRUE 成功,FALSE 失败
PHP 版本: 4.0+
PHP 变更日志: PHP 5.3.1:允许在 Windows 中跨驱动器重命名文件。
PHP 5.0:可以与某些 URL 包装器一起使用。

❮ PHP 文件系统参考