Query: rename
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
RENAME(3) 1 RENAME(3) rename - Renames a file or directorySYNOPSISbool rename (string $oldname, string $newname, [resource $context])DESCRIPTIONAttempts to rename $oldname to $newname, moving it between directories if necessary. If $newname exists, it will be overwritten.PARAMETERSo $oldname - Note The old name. The wrapper used in $oldname must match the wrapper used in $newname. o $newname - The new name. o $context - Note Context support was added with PHP 5.0.0. For a description of contexts, refer to "Streams".RETURN VALUESReturns TRUE on success or FALSE on failure.CHANGELOG+--------+---------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------------+ | 5.3.1 | | | | | | | rename(3) can now rename files across drives in | | | Windows. | | | | | 5.0.0 | | | | | | | rename(3) can now also be used with some URL | | | wrappers. Refer to "Supported Protocols and Wrap- | | | pers" for a listing of which wrappers support | | | rename(3). | | | | | 4.3.3 | | | | | | | rename(3) may now be able to rename files across | | | partitions on *nix based systems, provided the | | | appropriate permissions are held. Warnings may be | | | generated if the destination filesystem doesn't | | | permit chown() or chmod() system calls to be made | | | on files -- for example, if the destination | | | filesystem is a FAT filesystem. | | | | +--------+---------------------------------------------------+EXAMPLESExample #1 Example with rename(3) <?php rename("/tmp/tmp_file.txt", "/home/user/login/docs/my_file.txt"); ?>SEE ALSOcopy(3), unlink(3), move_uploaded_file(3). PHP Documentation Group RENAME(3)
Related Man Pages |
---|
rename(3) - php |
pts_rename(1) - php |
pts_rename(1) - mojave |
pts_rename(1) - posix |
pts_rename(1) - bsd |
Similar Topics in the Unix Linux Community |
---|
find and mv |
Renaming the files |
rename a lot of files again |
File rename error |
Parse multiple html files in directory |