PHP Manipulating Files PHP Readfile Function: Example
PHP Manipulating Files PHP Readfile Function: Example
PHP Manipulating Files PHP Readfile Function: Example
PHP has several functions for creating, reading, uploading, and editing files.
Assume we have a text file called "webdictionary.txt", stored on the server, that
looks like this:
The PHP code to read the file and write it to the output buffer is as follows (the
readfile() function returns the number of bytes read on success):
Example
<?php
echo readfile("webdictionary.txt");
?>
The readfile() function is useful if all you want to do is open up a file and read
its contents.
1
The first parameter of fopen() contains the name of the file to be opened and
the second parameter specifies in which mode the file should be opened. The
following example also generates a message if the fopen() function is unable to
open the specified file:
Example
<?php
$myfile = fopen("webdictionary.txt", "r") or die("Unable to open file!");
echo fread($myfile,filesize("webdictionary.txt"));
fclose($myfile);
?>
Tip: The fread() and the fclose() functions will be explained below.
Modes Description
r Open a file for read only. File pointer starts at the beginning of
the file
w Open a file for write only. Erases the contents of the file or
creates a new file if it doesn't exist. File pointer starts at the
beginning of the file
a Open a file for write only. The existing data in file is preserved.
File pointer starts at the end of the file. Creates a new file if the file
doesn't exist
x Creates a new file for write only. Returns FALSE and an error if
file already exists
The first parameter of fread() contains the name of the file to read from and the
second parameter specifies the maximum number of bytes to read.
The following PHP code reads the "webdictionary.txt" file to the end:
fread($myfile,filesize("webdictionary.txt"));