“Dodatek PHP do pliku” Kod odpowiedzi

Dodatek PHP do pliku

// 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 Zapisz tablicę do pliku

$arr1 = array ('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5);
file_put_contents("array.json",json_encode($arr1));
# array.json => {"a":1,"b":2,"c":3,"d":4,"e":5}
$arr2 = json_decode(file_get_contents('array.json'), true);
$arr1 === $arr2 # => true
Mobile Star

Dołączenie pliku TXT z PHP

$log_content="This line is logged on 2020-08-14 09:55:00";
$myfile = fopen("log.txt", "a") or die("Unable to open file!");
fwrite($myfile, $log_content);
fclose($myfile);
Embarrassed Eagle

Odpowiedzi podobne do “Dodatek PHP do pliku”

Pytania podobne do “Dodatek PHP do pliku”

Więcej pokrewnych odpowiedzi na “Dodatek PHP do pliku” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu