Skip to content

Instantly share code, notes, and snippets.

@ionatan-israel
Created June 12, 2017 11:37
Show Gist options
  • Save ionatan-israel/fab8cb243587d7c89bf84b0c41c24387 to your computer and use it in GitHub Desktop.
Save ionatan-israel/fab8cb243587d7c89bf84b0c41c24387 to your computer and use it in GitHub Desktop.
debug logging php
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