Skip to content

Instantly share code, notes, and snippets.

@TheHiddenHaku
Last active August 29, 2015 14:06
Show Gist options
  • Select an option

  • Save TheHiddenHaku/60b029594ba92f89bdc3 to your computer and use it in GitHub Desktop.

Select an option

Save TheHiddenHaku/60b029594ba92f89bdc3 to your computer and use it in GitHub Desktop.
PHP - Function to log data in javascript console
<?php
//UTILITY TO CONSOLE LOG DEBUG OUTPUT
function console_log($data, $table = 0) {
$verb = $table ? 'table' : 'log';
if(is_array($data) || is_object($data)) {
echo "<script>console.".$verb."(".json_encode($data).");</script>" ;
} else {
echo "<script>console.".$verb."(".$data.");</script>" ;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment