PHP fread( ) Function
The fread() function in PHP is an inbuilt function that reads up to length bytes from the file pointer referenced by file from an open file. The fread() function stops at the end of the file or when it reaches the specified length passed as a parameter, whichever comes first. The file and the length which has to be read are sent as parameters to the fread() function and it returns the read string on success, or FALSE on failure.
Syntax:
string fread ( $file, $length )
Parameters Used:
The fread() function in PHP accepts two parameters.
- $file: It is a mandatory parameter which specifies the file.
- $length: It is a mandatory parameter that specifies the maximum number of bytes to be read.
Return Value: It returns the read string on success, or False on failure.
Exceptions:
- Both binary data, like images and character data, can be written with this function since fread() is binary-safe.
- To get the contents of a file only into a string, use file_get_contents() as it has much better performance than the code above.
- Since systems running Windows differentiate between binary and text files, the file must be opened with ‘b’ included in fopen() mode parameter.
Below programs illustrate the fread() function:
Suppose a file named gfg.txt contains the following content:
Geeksforgeeks is a portal of geeks!
Program 1:
<?php// Opening a file$myfile = fopen("gfg.txt", "r"); // reading 13 bytes from the file// using fread() functionecho fread($myfile, "13"); // closing the filefclose($myfile);?> |
Output:
Geeksforgeeks
Program 2:
<?php// Opening a file$myfile = fopen("gfg.txt", "r"); // reading the entire file using// fread() functionecho fread($myfile, filesize("gfg.txt")); // closing the filefclose($myfile);?> |
Output:
Geeksforgeeks is a portal of geeks!
Program 3:
<?php// Opening a file$myfile = "logo.jpg"; // opening in binary read mode // for windows systems$myhandle = fopen($myfile, "rb"); // reading an image using fread()echo fread($myhandle, filesize($myfile)); // closing the filefclose($myhandle);?> |
Output:
256
Reference:
http://php.net/manual/en/function.fread.php



Please Login to comment...