Created
July 28, 2014 06:25
-
-
Save AlexMihov/3eadde6c66f9f8655e52 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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