Detailed explanation of php fwrite() function writing file example

怪我咯
Release: 2023-03-07 22:40:01
Original
6467 people have browsed it

php What does the fwrite() function do?

In php, the php fwrite() function is used to write files (safe for binary files). It is to add a new element to the file. Let’s take a look at its syntax:

Syntax

fwrite(file,string,length)
Copy after login

Parameter details:


ParametersDescription
fileRequired. Specifies the open file to write to.
stringRequired. Specifies the string to be written to the open file.
length Optional. Specifies the maximum number of bytes to be written.


Description

fwrite() writes the contents of string to the file Pointer to file. If length is specified, writing will stop when length bytes have been written or when the string has been written, whichever occurs first.

The fwrite function is successfully executed and returns the number of bytes written. On failure, returns FALSE.

Example

php fwrite() function example, the code is as follows:

<?php
 $file = fopen("test.txt","w");
 echo fwrite($file,"Hello World. Testing!");
 fclose($file);
 ?>
Copy after login

Detailed explanation of the example:

Use the fwrite function, to A file named test.txt, add the string "Hello World. Testing!" to it.

Code running results:

21
Copy after login

If we open the test.txt file at this time, we will see the newly added content "Hello World. Testing!".

[Recommended related articles]:

Detailed example of php fwrite() function appending and newline writing

The above is the detailed content of Detailed explanation of php fwrite() function writing file example. 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!