Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 17, 2019 21:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/73533ea1b63573cf8c86c3f4370b393d to your computer and use it in GitHub Desktop.
Save parzibyte/73533ea1b63573cf8c86c3f4370b393d to your computer and use it in GitHub Desktop.
Ejemplo de file_put_contents en PHP
<?php
// https://parzibyte.me/blog
$nombreArchivo = "direccion.txt";
$datos = "New New York #456";
file_put_contents($nombreArchivo, $datos);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment