Home>Article>Backend Development> Can't php fopen() create a file?

Can't php fopen() create a file?

青灯夜游
青灯夜游 Original
2021-07-13 18:55:40 3140browse

In PHP, fopen() cannot create a file. This function is used to open a file or URL. If the opening is successful, the file pointer resource is returned; if the opening fails, FALSE is returned with an error message, but no new file is created.

Can't php fopen() create a file?

The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

You can use the fopen() function to open in PHP A file or URL.

If the opening is successful, the file pointer resource is returned; if the opening fails, FALSE is returned with an error message. You can hide error output by adding an '@' in front of the function name.

The syntax format of the fopen() function is as follows:

fopen(filename,mode,include_path,context)
Parameters Description
filename Required. Specifies the file or URL to open.
mode Required. Specifies the type of access you are requesting to this file/stream.
include_path Optional. Set this parameter to '1' if you also want to search for files in include_path (in php.ini).
context Optional. Specifies the environment for a file handle. context is a set of options that can modify the behavior of the stream.

Possible values for mode parameter:

##mode Description r Open in read-only mode and point the file pointer to the file header. r Open in read-write mode and point the file pointer to the file header. w Open for writing, point the file pointer to the file header and truncate the file size to zero. Create the file if it does not exist. w Open in read-write mode, point the file pointer to the file header and truncate the file size to zero. Create the file if it does not exist. a Open for writing, pointing the file pointer to the end of the file. Create the file if it does not exist. a Open in read-write mode and point the file pointer to the end of the file. Create the file if it does not exist. x Create and open for writing, pointing the file pointer to the file header. If the file already exists, the fopen() call fails and returns FALSE and generates an E_WARNING level error message. Create the file if it does not exist. Applies to local files only. x Create and open in read-write mode, other behaviors are the same as x. c Only opens the file for writing, or creates the file if it does not exist. If the file exists, the file contents are not cleared and the file pointer is pointed to the file header. c Open the file for reading and writing, and create the file if it does not exist. If the file exists, the file contents are not cleared and the file pointer is pointed to the file header.
[Example] Use the fopen() function to open the file.

'; $handle = fopen("D:/install/phpstudy/WWW/index.html", "wb"); var_dump($handle);echo '
'; $handle = fopen("http://c.biancheng.net/", "r"); var_dump($handle); ?>

The running results are as follows:

resource(3) of type (stream) resource(4) of type (stream) resource(5) of type (stream)

Recommended learning: "

PHP Video Tutorial"

The above is the detailed content of Can't php fopen() create a file?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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