append in php code example
Example 1: php append to file
$txt = "data-to-add";
$myfile = file_put_contents('logs.txt', $txt.PHP_EOL , FILE_APPEND | LOCK_EX);
$myfile = fopen("logs.txt", "a") or die("Unable to open file!");
$txt = "user id date";
fwrite($myfile, "\n". $txt);
fclose($myfile);
Example 2: php append to array
$myArr = [1, 2, 3, 4];
array_push($myArr, 5, 8);
print_r($myArr);
$myArr[] = -1;
print_r($myArr);
Example 3: array_push in php
<?php
$a=array("red","green");
array_push($a,"blue","yellow");
print_r($a);
?>