Rename () function in php

Source: Internet
Author: User
In php, the rename () function is the php filesystem function. the rename () function is used to rename the file or directory. if the file or directory is successfully renamed, the function returns true. If it fails, false is returned.

Statement: rename (oldname, newname, context)

Parameter description

Oldname is required and specifies the file or directory to be renamed.

Newname is required. it specifies the new name of the file or directory.

Context is required. it 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.

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.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.