Skip to content

Instantly share code, notes, and snippets.

@nickolasburr
Created April 8, 2016 13:57
Show Gist options
  • Save nickolasburr/3c73e060e521627c362c0569d3cc936d to your computer and use it in GitHub Desktop.
Save nickolasburr/3c73e060e521627c362c0569d3cc936d to your computer and use it in GitHub Desktop.
Log PHP data structures in browser console
<?php
// log information to JS console
function consoleLog ($value) {
echo '<script>console.log(' . json_encode($value) . ')</script>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment