PHP File Open Read Function || PHP Examples
×

PHP File Open/Read

3953

As you know, PHP is a server side programming language and hence it allows user to work with the files and directories, which we stored on the web server.

Today, you will learn how to open, read, and close the files and directory on your web server by using the PHP file functions.

See FILE OPEN /READ/CLOSE Command Using PHP

1. FILE OPEN (fopen): It is used to open the file, i.e. using the open function; we open those files which is stored in a folder. In which we pass two parameters, the first parameter is the name of the file and second parameter is which mode we want to perform in an existing file.

For Example:

fopen("Filename"," r");

Filename: It is file name that we want an open.

r : Reading operation in a file.

2. FILE READ (fread): The fread function used to read the open file. In fread, we pass two parameters, the first parameter is the name of the file which we want to read and second parameter is the total numbers of bytes are read.

3. FILE CLOSE (fclose): It is used to close an open file.

Now come to the coding part..

Step 1: In this example we used a txtfile.txt file. This file is stored in a wamp/www folder.

Step 2: PHP code

<?php
// file is open using fopen function
= fopen("txtfile.txt", "r") or die ("doesn't file exist");

// open file is read using fread function
echo fread(, filesize("txtfile.txt"));

// close an open file
fclose();
?>

Result:




Best WordPress Hosting


Share:


Discount Coupons

Get a .COM for just $6.98

Secure Domain for a Mini Price



Leave a Reply


Comments
    Waiting for your comments