PHP rename() 函數(shù)
PHP rename() 函數(shù)

定義和用法
rename() 函數(shù)重命名文件或目錄。
如果成功,該函數(shù)返回 TRUE。如果失敗,則返回 FALSE。
語法
rename(oldname,newname,context)
參數(shù) | 描述 |
---|---|
oldname | 必需。規(guī)定要重命名的文件或目錄。 |
newname | 必需。規(guī)定文件或目錄的新名稱。 |
context | 可選。規(guī)定文件句柄的環(huán)境。context 是一套可以修改流的行為的選項(xiàng)。 |
實(shí)例
<?php
rename("images","pictures");
?>
rename("images","pictures");
?>

相關(guān)文章
- PHP EOF(heredoc) 使用說明
- PHP 數(shù)組排序
- PHP While 循環(huán)
- PHP 多維數(shù)組
- PHP 錯(cuò)誤處理
- PHP 過濾器
- PHP array_fill() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_udiff() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP natsort() 函數(shù)
- PHP reset() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP cURL 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP 5 Math 函數(shù)