“Php Agregar la línea a archivo” Código de respuesta

PHP Agregar a la presentación

// 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 Agregar la línea a archivo

file_put_contents("filename.txt","new line to appended\n",FILE_APPEND);
Friendly Hawk

Agregar el archivo txt desde 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

Respuestas similares a “Php Agregar la línea a archivo”

Preguntas similares a “Php Agregar la línea a archivo”

Más respuestas relacionadas con “Php Agregar la línea a archivo” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código