Analysis of rename function usage in php and phprename function usage
This article analyzes the rename () function usage in php. Share it with you for your reference. The details are as follows:
Php filesystem function. rename () function renames a file or directory. If the file is successfully renamed, the function returns true. If it fails, false is returned.
Statement: rename (oldname, newname, context)
Parameters |
Description |
Oldname |
Required. specifies the file or directory to be renamed. |
Newname |
Required. specifies the new name of the file or directory. |
Context |
Required. specifies the file handle environment. context is a set of options for modifying stream behavior. |
Note: Before php 4.3.3, rename () cannot rename files across Disk Partitions In * nix-based systems.
Note: The encapsulation protocol used in oldname must match that used in newname.
Note: The support for context is added in php 5.0.0.
Copy codeThe Code is as follows: <? Php
Rename ("images", "pictures ");
?>
Oldpath ---- file or directory original path, $ newpath ---- New defined path, then rename ($ oldpath, $ newpath) can complete the file/directory movement operation, after my test, both win32 and unix php4 support this function.
In addition, if the unlink () function is canceled in the win32 version of php4, you can also use the rename () function to delete the function. For example:
$ Path ---- file or directory path
$ Tmp ---- tmp directory (/tmp)
Use rename ($ path, $ tmp) to move the file to the tmp directory.
I hope this article will help you with PHP programming.