|
fpassthruOutput all remaining data on a file pointer Description
int fpassthru(resource
$stream )Reads to EOF on the given file pointer from the current position and writes the results to the output buffer. You may need to call rewind to reset the file pointer to the beginning of the file if you have already written data to the file. If you just want to dump the contents of a file to the output buffer, without first modifying it or seeking to a particular offset, you may want to use the readfile, which saves you the fopen call. Parameters
Return Values
Returns the number of characters read from Examples
Example #1 Using fpassthru with binary files
Notes
See Also
|