Skip to content

Instantly share code, notes, and snippets.

@nyancodeid
Created January 18, 2020 07:19
Show Gist options
  • Select an option

  • Save nyancodeid/ef044ab7a22e999da7e6aa721b87642a to your computer and use it in GitHub Desktop.

Select an option

Save nyancodeid/ef044ab7a22e999da7e6aa721b87642a to your computer and use it in GitHub Desktop.
Logging PHP Variable into console.log javascript
<?php
function console_log($output, $with_script_tags = true) {
$js_code = 'console.log(' . json_encode($output, JSON_HEX_TAG) .
');';
if ($with_script_tags) {
$js_code = '<script>' . $js_code . '</script>';
}
echo $js_code;
}
console_log($getIncrement);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment