Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 17, 2019 21:41
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/ef08a92b85320d0d55dd16b0c58babcb to your computer and use it in GitHub Desktop.
Save parzibyte/ef08a92b85320d0d55dd16b0c58babcb to your computer and use it in GitHub Desktop.
Adjuntar, no sobrescribir, con file_put_contents
<?php
// https://parzibyte.me/blog
$nombreArchivo = "direccion.txt";
$datos = "New New York #456";
file_put_contents($nombreArchivo, $datos, FILE_APPEND);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment