12 lines
297 B
PHP
12 lines
297 B
PHP
<?php
|
|
// https://stackify.com/how-to-log-to-console-in-php/
|
|
function mp_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;
|
|
}
|
|
?>
|