The fpassthru() function in PHP is an inbuilt function which is used to read data from a current position from a specified file until end of file and then write the result to the output buffer. The file which has to be read is sent as a parameter to the fpassthru() function and it returns the number of characters passed on success or FALSE on failure.
Syntax:
int fpassthru ( $file )
Parameters Used:
The fpassthru() function in PHP accepts one parameter.
- file: It is a mandatory parameter which specifies the file.
Return Value:
- It returns the number of characters passed on success or FALSE on failure.
Exceptions
- The file should be opened in binary mode while using the fpassthru() function on a binary file on Windows.
- rewind() function should be called to set the file pointer to the beginning of the file if you have already written to the file.
- the readfile() function should be used if you want to dump the contents of a file to the output buffer without modifying it.
Below is the implementation of fpassthru() function.
Suppose a file gfg.txt contains the following content :
Geeksforgeeks
Portal for Geeks!
Program 1:
<?php // opening a file in read only mode $myfile = fopen("gfg.txt", "rb"); // Reading the first line of the file fgets($myfile); // Sending the rest of the file // contents to the output buffer echo fpassthru($myfile); // closing the file fclose($myfile); ?> |
Output:
Portal for Geeks!17
Note: 17 indicates the number of characters passed.
Program 2:
<?php // dumping index page of the server fpassthru($myfile); ?> |
Reference :
http://php.net/manual/en/function.fpassthru.php
Recommended Posts:
- How to get the function name inside a function in PHP ?
- PHP | Ds\Set xor() Function
- PHP | key() Function
- PHP | Ds\Map get() Function
- PHP | pos() Function
- PHP | end() Function
- PHP | Ds\Set add() Function
- PHP | max( ) Function
- PHP | Ds\Set contains() Function
- PHP | Ds\Set last() Function
- PHP | Ds\Set first() Function
- PHP | pow( ) Function
- PHP | Ds\Map last() Function
- PHP | Ds\Map map() Function
- PHP | Ds\Map xor() Function
- PHP | Ds\Map put() Function
- PHP Ds\Map sum() Function
- PHP | Ds\Map first() Function
- PHP | pi( ) Function
- PHP | min( ) Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

