Answers for "php app file"

PHP
1

php append file

<?php

$file = 'myFile.txt';
$text = "This is my Text\n";
file_put_contents($file, $text, FILE_APPEND | LOCK_EX);

// adds "This is my Text" and a linebreak to the end of "myFile.txt"
// "LOCK_EX" prevents anyone else writing to the file at the same time

?>
Posted by: Guest on September-15-2021

Browse Popular Code Answers by Language