Parse the fopen () function in PHP to explain the _php technique with open file mode

Source: Internet
Author: User
The fopen () function is used to open a file in PHP.
The first parameter of this function contains the name of the file you want to open, and the second parameter sets which mode is used to open the file:
Copy Code code as follows:

<?php
$file =fopen ("Welcome.txt", "R");
?>

The file may be opened in the following modes:
R: Read-only. The pointer is positioned at the beginning of the file, if the file does not complain.
r+: Read/write. The pointer is positioned at the beginning of the file and the error occurs if the file is not saved.
W: Write only. Open and empty the contents of the file, and create a new file if the file does not exist.
w+: Read/write. Open and empty the contents of the file, and create a new file if the file does not exist.
A: Append. Open and position the pointer at the end of the file, or create a new file if the file does not exist.
A +: Read/append. Open and position the pointer at the end of the file, or create a new file if the file does not exist.
X: Write only. Create a new file. Returns FALSE if the file is present.
x+: Read/write. Create a new file. Returns FALSE and an error if the file already exists.

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.