Skip to content

Instantly share code, notes, and snippets.

@AlexMihov
Created July 28, 2014 06:25
Show Gist options
  • Save AlexMihov/3eadde6c66f9f8655e52 to your computer and use it in GitHub Desktop.
Save AlexMihov/3eadde6c66f9f8655e52 to your computer and use it in GitHub Desktop.
$file = 'log.txt';
// Open the file to get existing content
$current = file_get_contents($file);
// Append a new person to the file
$current .= "I did it!\n";
// Write the contents back to the file
file_put_contents($file, $current);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment