Skip to content

Instantly share code, notes, and snippets.

@emersonbroga
Created July 17, 2013 17:43
Show Gist options
  • Save emersonbroga/6022740 to your computer and use it in GitHub Desktop.
Save emersonbroga/6022740 to your computer and use it in GitHub Desktop.
function log($text)
{
if(is_array($text) || is_object($text)){
$text = http_build_query($text);
}
// open log file
$filename = "mylog.txt";
$fh = fopen($filename, "a") or die("Could not open log file.");
fwrite($fh, date("d-m-Y, H:i")." - $text\n") or die("Could not write file!");
fclose($fh);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment