Skip to content

Instantly share code, notes, and snippets.

@mkolb
Last active January 3, 2023 14:53
Show Gist options
  • Star 28 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save mkolb/2379498 to your computer and use it in GitHub Desktop.
Save mkolb/2379498 to your computer and use it in GitHub Desktop.
var_dump into error log
<?php
ob_start();
var_dump($this);
error_log(ob_get_clean());
?>
@kimek
Copy link

kimek commented Jun 15, 2016

+1
Thanks for sharing with this simple, small but awesome snippet

@nsitbon
Copy link

nsitbon commented Jun 28, 2016

ob_get_contents()and ob_end_clean() can be merge in one call to ob_get_clean()

@mkormendy
Copy link

mkormendy commented Jul 20, 2016

Based on nsitbon's answer, and further optimization... we can write:

ob_start();
var_dump($this);
error_log(ob_get_clean());

@mkolb
Copy link
Author

mkolb commented Mar 22, 2017

Thanks @nsitbon and @mkormendy! I've updated the gist to simplify it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment