“добавить в PHP” Ответ

PHP добавляет к файлу

// LOCK_EX will prevent anyone else writing to the file at the same time
// PHP_EOL will add linebreak after each line
$txt = "data-to-add";
$myfile = file_put_contents('logs.txt', $txt.PHP_EOL , FILE_APPEND | LOCK_EX);

// Second option is this
$myfile = fopen("logs.txt", "a") or die("Unable to open file!");
$txt = "user id date";
fwrite($myfile, "\n". $txt);
fclose($myfile);
MeVyom

PHP добавляет на массив

$myArr = [1, 2, 3, 4];

array_push($myArr, 5, 8);
print_r($myArr); // [1, 2, 3, 4, 5, 8]

$myArr[] = -1;
print_r($myArr); // [1, 2, 3, 4, 5, 8, -1]
Allen

array_push в php

<?php
// Insert "blue" and "yellow" to the end of an array:


$a=array("red","green");
array_push($a,"blue","yellow");
print_r($a);
?>
MohammadMark

PHP Array Append


<?php
$stack = array("orange", "banana");
array_push($stack, "apple", "raspberry");
print_r($stack);
?>
Homely Hamerkop

добавить в PHP


append_string($str1, $str2); //

$str1.=$str2; //operator
Splendid Salmon

Ответы похожие на “добавить в PHP”

Вопросы похожие на “добавить в PHP”

Больше похожих ответов на “добавить в PHP” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования