Skip to content

Instantly share code, notes, and snippets.

@masterfermin02
Created May 12, 2017 18:37
Show Gist options
  • Save masterfermin02/18bb461bb7fdc385fe5c0b4930c8b1a2 to your computer and use it in GitHub Desktop.
Save masterfermin02/18bb461bb7fdc385fe5c0b4930c8b1a2 to your computer and use it in GitHub Desktop.
Write log
<?php
function writeLog($log, $file = 'log.txt')
{
$fp = fopen($file, 'a+');
fwrite($fp, $log."\n");
fclose($fp);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment