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
$myfile = fopen ( "gfg.txt" , "w" );
echo fwrite( $myfile , "Geeksforgeeks is a portal for geeks!" );
fclose( $myfile );
?>
|
Output:
36
Program 2:
<?php
$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
Reference : http://php.net/manual/en/function.fwrite.php
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
19 Jun, 2018
Like Article
Save Article