21 lines
445 B
PHP
21 lines
445 B
PHP
|
|
<?php
|
||
|
|
/* Copyright (C) 2025 Moko Consulting <hello@mokoconsulting.tech>
|
||
|
|
|
||
|
|
This file is part of a Moko Consulting project.
|
||
|
|
|
||
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
*/
|
||
|
|
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
?>
|
||
|
|
<!--
|
||
|
|
Custom code included here
|
||
|
|
-->
|