17 lines
347 B
PHP
17 lines
347 B
PHP
<?php
|
|
|
|
/*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
https://stackify.com/how-to-log-to-console-in-php/
|
|
*/
|
|
function console_log($output) {
|
|
if (CONSOLE_OFF)
|
|
return;
|
|
$json_output = json_encode($output, JSON_HEX_TAG);
|
|
$js_code = '<script>console.log(' . $json_output . ');</script>';
|
|
echo $js_code;
|
|
}
|
|
|
|
|
|
?>
|