No olvides que en las ciencias un problema casi siempere suele tener más de una resoluciones, no obstante te enseñamos lo mejor y más óptimo.
Ejemplo 1: php anexar al archivo
// 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")ordie("Unable to open file!");$txt="user id date";fwrite($myfile,"n".$txt);fclose($myfile);
Ejemplo 2: escribir en el archivo php
$myfile=fopen("newfile.txt","w")ordie("Unable to open file!");fwrite($myfile,"Content to write to file");fclose($myfile);
Ejemplo 3: file_put_contents archivo php json
$data[]=$_POST['data'];$inp=file_get_contents('results.json');$tempArray=json_decode($inp);array_push($tempArray,$data);$jsonData=json_encode($tempArray);file_put_contents('results.json',$jsonData);
Ejemplo 4: archivo php poner contenido
$data=["[email protected]"=>["more"=>["yes"=>"More"]]];$inp=file_get_contents('results.json');$tempArray=json_decode($inp);array_push($tempArray,$data);$jsonData=json_encode($tempArray);file_put_contents('results.json',$jsonData);
Ejemplo 5: php file_put_contents
file_put_contents ($filename,$data,$flags=0,$context=null):int
Comentarios y valoraciones del tutorial
Si tienes alguna cuestión y disposición de aclarar nuestro tutorial eres capaz de añadir una reseña y con deseo lo leeremos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)