Created
June 12, 2017 11:37
-
-
Save ionatan-israel/fab8cb243587d7c89bf84b0c41c24387 to your computer and use it in GitHub Desktop.
debug logging php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function loging( $obj ) { | |
ob_start(); | |
var_dump( $obj ); | |
error_log(ob_get_clean()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment