Skip to content

Instantly share code, notes, and snippets.

@inix
Forked from mkolb/var_dump-log.php
Created August 20, 2016 15:48
Show Gist options
  • Save inix/833e8f63ada34c64843deeda9bd3b8f5 to your computer and use it in GitHub Desktop.
Save inix/833e8f63ada34c64843deeda9bd3b8f5 to your computer and use it in GitHub Desktop.
var_dump into error log
<?php
ob_start();
var_dump($this);
$contents = ob_get_contents();
ob_end_clean();
error_log($contents);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment