Friday, September 5, 2025
HomeLanguagesPHP fread( ) Function

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:

Geeksforneveropen is a portal of neveropen!

Program 1:




<?php
// Opening a file
$myfile = fopen("gfg.txt", "r");
  
// reading 13 bytes from the file
// using fread() function
echo fread($myfile, "13");
  
// closing the file
fclose($myfile);
?>


Output:

Geeksforneveropen

Program 2:




<?php
// Opening a file
$myfile = fopen("gfg.txt", "r");
  
// reading the entire file using
// fread() function
echo fread($myfile, filesize("gfg.txt"));
        
// closing the file
fclose($myfile);
?>


Output:

Geeksforneveropen is a portal of neveropen!

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 file
fclose($myhandle);
?>


Output:

256

Reference:
http://php.net/manual/en/function.fread.php

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11860 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6698 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS