PHP rename() 函数
PHP rename() 函数
完整的 PHP Filesystem 参考手册定义和用法
rename() 函数重命名文件或目录。
如果成功,该函数返回 TRUE。如果失败,则返回 FALSE。
语法
rename(oldname,newname,context)
参数 | 描述 |
---|---|
oldname | 必需。规定要重命名的文件或目录。 |
newname | 必需。规定文件或目录的新名称。 |
context | 可选。规定文件句柄的环境。context 是一套可以修改流的行为的选项。 |
实例
<?php
rename("images","pictures");
?>
rename("images","pictures");
?>
完整的 PHP Filesystem 参考手册
相关文章
- PHP EOF(heredoc) 使用说明
- PHP 数组排序
- PHP While 循环
- PHP 多维数组
- PHP 错误处理
- PHP 过滤器
- PHP array_fill() 函数
- PHP array_fill_keys() 函数
- PHP array_map() 函数
- PHP array_rand() 函数
- PHP array_reverse() 函数
- PHP array_udiff() 函数
- PHP array_uintersect_assoc() 函数
- PHP natsort() 函数
- PHP reset() 函数
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Math 函数