Skip to content

Instantly share code, notes, and snippets.

@frankdejonge
Created January 13, 2015 12:44
Show Gist options
  • Save frankdejonge/45860d9edbf8610df9e8 to your computer and use it in GitHub Desktop.
Save frankdejonge/45860d9edbf8610df9e8 to your computer and use it in GitHub Desktop.
<?php
function append_to_file($location, $contents)
{
$handle = fopen($location, 'a');
defer fclose($handle);
// stuff stuff
frwite($handle, $contents);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment