Skip to content

Instantly share code, notes, and snippets.

@RyanRLong
Created October 19, 2017 14:47
Show Gist options
  • Select an option

  • Save RyanRLong/472934c6f7e9dd230da6f23a2ab550f9 to your computer and use it in GitHub Desktop.

Select an option

Save RyanRLong/472934c6f7e9dd230da6f23a2ab550f9 to your computer and use it in GitHub Desktop.
PHP Debugging
<?php
function console_log( ...$messages ){
$msgs = '';
foreach ($messages as $msg) {
$msgs .= json_encode($msg);
}
echo '<script>';
echo 'console.log('. json_encode($msgs) .')';
echo '</script>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment