Skip to content

Instantly share code, notes, and snippets.

@mikedfunk
Created September 8, 2015 18:31
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikedfunk/5115e41ce30189141f34 to your computer and use it in GitHub Desktop.
Save mikedfunk/5115e41ce30189141f34 to your computer and use it in GitHub Desktop.
php one-liner to write to a file (log)
// This function is identical to calling fopen(), fwrite() and fclose() successively to write data to a file.
file_put_contents($filename, $message, FILE_APPEND);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment