Skip to content

Instantly share code, notes, and snippets.

@joelstransky
Created March 8, 2017 00:02
Show Gist options
  • Select an option

  • Save joelstransky/eb99f84753178bb0096d1c06b2858ece to your computer and use it in GitHub Desktop.

Select an option

Save joelstransky/eb99f84753178bb0096d1c06b2858ece to your computer and use it in GitHub Desktop.
Write string, array or objects to log in php
<?php
if ( ! function_exists('write_log')) {
function write_log ( $log ) {
if ( is_array( $log ) || is_object( $log ) ) {
error_log( print_r( $log, true ) );
} else {
error_log( $log );
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment