PHP Write File

WBOY
Release: 2024-08-29 13:02:40
Original
205 people have browsed it

There are various in-built functions in PHP which are used to perform various actions upon a file. They maybe to create, open, read, write and other operations on the file.

Start Your Free Software Development Course

Web development, programming languages, Software testing & others

Functions of PHP Write File

Below are the major functions available by default in the PHP below:

1. fopen()

First, in order to write to a file, we must know how to create that file. This is done with the help of the open() function. The name might be misleading as to open a file, but in PHP, the same function is used for creating and opening the file, just like vi functions in Linux. This function, as soon as it is executed, checks for the file if it exists and then only creates it. The example below demonstrates the same:

Code:

<?php
// Creating a file for test
$myfile = fopen("test.txt", "w")
?>
Copy after login

Output:

PHP Write File

2. fwrite()

After creating a file, we have to write the required contents into it, and hence we use this function for the same. This function will stop only when it reaches the end of the file (EOF) or the length we specify according to the order which comes first.

Syntax:

fwrite(file, string, length)
Copy after login
  • where the file is the mandatory field which describes the file we should write to
  • the string is another required parameter which tells the string to write to the opened file
  • length is an optional parameter and gives us the maximum number of bytes to be written

Code:

<?php
// Your code here!
$f = fopen("testfile.txt", "w");
$text = "Random data here\n";
fwrite($f, $text);
?>
Copy after login

Output:

PHP Write File

Here testfile.txt is the file created, and the string value assigned to $text will be written to that file.

3. file_put_contents()

This is another function which can be used to write contents to a file in PHP. There are a certain number of rules in the same order mentioned to be followed when accessing a file:

  • There is a property called FILE_USE_INCLUDE_PATH, and it checks the path if it includes a copy of the filename when it is set.
  • Creates a file after checking whether it exists or not
  • Next, it opens the file
  • If the property LOCK_EX is set, then it locks the file
  • When the property FILE_APPEND is set, it moves to the end of the file else clears the contents of the file.
  • Now it writes the required data to the file.
  • Closes the file and release if any locks are present
Note: The property FILE_APPEND should be used in order to save data from getting fully erased as it appends data to the end of the file.

Syntax:

file_put_contents(filename, text, mode, context)
Copy after login
  • where filename is the mandatory parameter and tells us the entire path of the file where we have to write to, this function hence checks and creates a file.
  • text is another mandatory field which is the data we have to write to our file. It can be in the form of a simple string, an array of strings or a data stream.
  • mode is the optional field which gives us various ways to operate on the file. Its possible values are:
    • FILE_USE_INCLUDE_PATH: This searches for specified filename in the include directory path.
    • FILE_APPEND: It appends the data to the file instead of overwriting the same.
    • LOCK_EX: This puts an explicit lock on the file when being written.
  • context is the optional parameter which gives the context of the file. It is basically a bunch of options which can alter the stream’s behavior.

Return Values: This function returns the total number of bytes which are written to the file in case of a SUCCESS and returns value FALSE if failed.

Below is the example:

Code:

<?php
echo file_put_contents("filetest.txt","Testing for file write");
?>
Copy after login

Output:

PHP Write File

Here the file we are creating is given as the first parameter, and the next parameter is the text written into that file.

4. Overwriting

We can overwrite to the above file in which data has been already written. Whatever data is already present in the file is cleaned off, and it will start as a brand new empty file. In the below examples, we will open an existing file and try writing new data on it.

Below is the example:

Code:

<?php
$f = fopen("testfile.txt", "w");
$text = "Random data here\n";
$filetext = "Over writing the data\n";
fwrite($f, $filetext);
$filetext = "File Dummy Data\n";
fwrite($f, $filetext);
fclose($f);
?>
Copy after login

Output:

PHP Write File

Here we are overwriting data in testfile.txt, so whatever is mentioned in the $filetext string value, the same will be written to the file. And when we use the same write command again by changing data given to the $filetext, then the old data is cleaned up and occupied by the latest text value that is provided.

At the end of the file, we always should close it by using the close() function which we have opened using the fwrite() function. As shown in the above example, we also use the \n, which represents the newline equivalent to pressing the enter button on our keyboard.

Now let us take an example and see how to include more data in our file.

Examples to Implement of PHP Write File

Below are the examples of PHP Write File:

Example #1

First, we add 2 lines of data using the below code:

Code:

<?php
$testf = "TestFile.txt";
$filehandle = fopen($testf, 'w');
$fdata = "Julian Caesar\n";
fwrite($filehandle, $fdata);
$fdata = "Harry James\n";
fwrite($filehandle, $fdata);
print "Data writing completed";
fclose($filehandle);
?>
Copy after login

Output:

PHP Write File

This creates a file TestFile.txt having 2 lines of data as mentioned.

Example #2

We will append another 2 names in the same file as shown below:

Code:

<?php
$testf = "TestFile.txt";
$filehandle = fopen($testf, 'a');
$fdata = "Lilly Potter\n";
fwrite($filehandle, $fdata);
$fdata = "Edward Cullen\n";
fwrite($filehandle, $fdata);
print "Data has been appended";
fclose($filehandle);
?>
Copy after login

Output:

PHP Write File

This example appends the given names to the same file as in the first example.

Conclusion

As shown above, there are various methods and steps that need to be followed when we want to write to a file in PHP. fwrite() is one of the main functions to do this and is used majorly for writing data to a file. They can do basic writing of data to our file but should be used in combination with other mandatory functions like open() and close(), without which it is not possible to perform operations on the file if it does not exist.

Recommended Article

This is a guide to the PHP Write File. Here we discuss the Introduction and its Functions of PHP Write File along with examples and Code Implementation. You can also go through our other suggested articles to learn more-

  1. Overview of Abstract Class in Python
  2. What is Abstract Class in PHP?
  3. Socket Programming in PHP with Methods
  4. PHP chop() | How to Work?

The above is the detailed content of PHP Write File. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!