PHP MySQL Tutorial
Learn PHP and MySQL

Append a String to a File Using PHP

100% of people found this useful
Append a String to a File Using PHP

To append a string to a file you will need to open the file using fopen() with the 'a' parameter. For example if your log file name is mylog.txt you would write the code like this :

// open the log file and check if the it's opened successfully
if (!($fp = fopen('mylog.txt', 'a'))) {
   die('Cannot open log file');
}

// ... your code do something here

// append to log file
// make sure you add a newline character at the end of the log string
fwrite($fp, "Initiate world domination\n");

// ... do some stuff here

// ... and your code do something else here

// append another line to the log file
fwrite($fp, "World domination completed. Bwa ha ha ha...!!");

Recent Comments

By: john9 Posted on 07-05-2016 1:36 AM
By: bilbao Posted on 07-25-2016 9:36 AM
By: john9 Posted on 08-20-2016 6:34 AM
By: john9 Posted on 08-20-2016 6:43 AM
By: john9 Posted on 09-25-2016 11:06 AM
Powered by Community Server (Non-Commercial Edition), by Telligent Systems