Skip to content

Instantly share code, notes, and snippets.

@arianimartins
Created January 7, 2016 20:32
Show Gist options
  • Save arianimartins/704a70336be3812d83cf to your computer and use it in GitHub Desktop.
Save arianimartins/704a70336be3812d83cf to your computer and use it in GitHub Desktop.
Print messages in browser console
<?php
function debug_to_console( $data ) {
if ( is_array( $data ) )
$output = "<script>console.log( 'Debug Objects: " . implode( ',', $data) . "' );</script>";
else
$output = "<script>console.log( 'Debug Objects: " . $data . "' );</script>";
echo $output;
}
debug_to_console('Text');
debug_to_console($something);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment