Skip to content

Instantly share code, notes, and snippets.

@ryuone
Created June 6, 2012 05:17
Show Gist options
  • Save ryuone/2880050 to your computer and use it in GitHub Desktop.
Save ryuone/2880050 to your computer and use it in GitHub Desktop.
PHP LOG出力
function debuglog($data)
{
$destination = "/tmp/debug.log";
@ob_start();
var_dump($data);
$output = @ob_get_contents();
@ob_end_clean();
@error_log($output."\n", 3 , $destination);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment