Skip to content

Instantly share code, notes, and snippets.

@branchzero
Created April 18, 2017 14:03
Show Gist options
  • Save branchzero/a145c353b1803a21195b8f124fe1d514 to your computer and use it in GitHub Desktop.
Save branchzero/a145c353b1803a21195b8f124fe1d514 to your computer and use it in GitHub Desktop.
Log Something
function log($content, $trace_code) {
file_put_contents(DISCUZ_ROOT.'./data/dzapp_log_'.date('Ymd').'.log', date('Y-m-d H:i:s').'::'.$trace_code.'::'.var_export($content, true).PHP_EOL, FILE_APPEND);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment