Skip to content

Instantly share code, notes, and snippets.

@yehchge
Created August 7, 2023 03:01
Show Gist options
  • Save yehchge/1de2fc1f4102ca10d57bc9d8867fa015 to your computer and use it in GitHub Desktop.
Save yehchge/1de2fc1f4102ca10d57bc9d8867fa015 to your computer and use it in GitHub Desktop.
php simple log
<?php
$sLogPath = dirname(__FILE__) ."/mylog.log";
$rFile = fopen( $sLogPath, "a" );
$sErrorMsg = "Error Message:".$msg." @at ".date("Y-m-d H:i:s")."\n";
fwrite($rFile, $sErrorMsg);
fclose($rFile);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment