Skip to content

Instantly share code, notes, and snippets.

@Juribiyan
Last active August 30, 2018 13:21
Show Gist options
  • Save Juribiyan/5a79ee81ab86694913543cbea89db67c to your computer and use it in GitHub Desktop.
Save Juribiyan/5a79ee81ab86694913543cbea89db67c to your computer and use it in GitHub Desktop.
PHP console.log
function console_log() {
foreach(func_get_args() as $arg) {
$args []= json_encode($arg);
}
echo '<script>console.log('.join(', ', $args).')</script>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment