“Escriba en un archivo usando PHP” Código de respuesta

escribir en el archivo php

$myfile = fopen("newfile.txt", "w") or die("Unable to open file!");
fwrite($myfile, "Content to write to file");
fclose($myfile);
Thoughtful Termite

Escribir archivo en PHP

// if not file is there then automatic create and write inside it.
$fptr = fopen('myfile.txt','w');
fwrite($fptr,"i am writing file in this\n");
fwrite($fptr,'writing another line.');
fclose($fptr);
kinjal suryavanshi

Escriba en un archivo usando PHP

<?php
$myfile = fopen("file_name.txt", "w") or die("Unable to open file!");
$txt = "Hello world\n";
fwrite($myfile, $txt);
$txt = " Php.\n";
fwrite($myfile, $txt);
fclose($myfile);
?>
Ankur

Respuestas similares a “Escriba en un archivo usando PHP”

Preguntas similares a “Escriba en un archivo usando PHP”

Más respuestas relacionadas con “Escriba en un archivo usando PHP” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código