How to rename a file using php

藏色散人
Release: 2023-03-01 21:42:01
Original
4513 people have browsed it

How to implement PHP renaming: first create a PHP sample code; then use the rename function to rename the file or directory. The syntax is "rename(oldname, newname, context)"; finally execute the file. .

How to rename a file using php

Definition and usage

rename() function renames a file or directory.

If successful, the function returns true. On failure, returns false.

Syntax

rename(oldname,newname,context)
Copy after login

Parameters

oldname required. Specifies the file or directory to be renamed.

newname Required. Specifies the new name of the file or directory.

context Optional. Specifies the environment for a file handle. context is a set of options that modify the behavior of the stream.

Tips and Notes

Note: Prior to PHP 4.3.3, rename() could not rename files across disk partitions on *nix-based systems.

Note: The encapsulation protocol used in oldname must match the one used in newname.

Note: Support for context was added in PHP 5.0.0.

Example

<?php
rename("images","pictures");
?>
Copy after login

For more related knowledge, please visit PHP Chinese website!

The above is the detailed content of How to rename a file using php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!