Skip to content

Instantly share code, notes, and snippets.

@eyedol
Created July 24, 2012 22:56
Show Gist options
  • Save eyedol/3173202 to your computer and use it in GitHub Desktop.
Save eyedol/3173202 to your computer and use it in GitHub Desktop.
$filter_crlf = array("\n", "\r");
$message = date("Y-m-d H:i:s")." : ".$message;
$mesg = str_replace($filter_crlf,'',$message);
$mesg .= "\n";
$logfile = DOCROOT."application/logs/upgrade_".$this->session->get('upgrade_session').".txt";
$logfile = fopen($logfile, 'a+');
fwrite($logfile, $mesg);
fclose($logfile);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment