Files
2024_WEBSITE_fipf/plugins/fipfcard_plugin/php/utils/console_log.php
2024-02-12 10:13:02 +01:00

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;
}
?>