The fwrite() function in PHP is an inbuilt function which is used to write to an open file. The fwrite() function stops at the end of the file or when it reaches the specified length passed as a parameter, whichever comes first. The file, string and the length which has to be written are sent as parameters to the fwrite() function and it returns the number of bytes written on success, or FALSE on failure.
Syntax:
fwrite(file, string, length)
Parameters: The fwrite() function in PHP accepts three parameters.
- file : It is a mandatory parameter which specifies the file.
- string : It is a mandatory parameter which specifies the string to be written.
- length : It is an optional parameter which specifies the maximum number of bytes to be written.
Return Value: It returns the number of bytes written on success, or False on failure.
Exceptions:
- Both binary data, like images and character data, can be written with this function since fwrite() is binary-safe.
- If writing operation is performed twice to the file pointer, then the data will be appended to the end of the file content.
Examples:
Input : $myfile = fopen("gfg.txt", "w");
echo fwrite($myfile, "Geeksforgeeks is a portal for geeks!");
fclose($myfile);
Output : 36
Input : $myfile = fopen("gfg.txt", "w");
echo fwrite($myfile, "PhP is Simple to Learn!");
echo fwrite($myfile, "Geeksforgeeks is a portal for geeks!");
fclose($myfile);
Output : 23
59
Below programs illustrate the fwrite() function:
Program 1:
<?php// Opening a file$myfile = fopen("gfg.txt", "w"); // writing content to a file using fwrite()echo fwrite($myfile, "Geeksforgeeks is a portal for geeks!"); // closing the filefclose($myfile);?> |
Output:
36
Program 2:
<?php// Opening a file$myfile = fopen("gfg.txt", "w"); // writing content to a file using fwrite()echo fwrite($myfile, "PhP is Simple to Learn!");echo fwrite($myfile, "Geeksforgeeks is a portal for geeks!"); // closing the filefclose($myfile);?> |
Output:
23 59
Reference : http://php.net/manual/en/function.fwrite.php

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.

