This commit is contained in:
2023-06-02 19:06:31 +02:00
parent e1951606c0
commit 5c1910292e
19 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,9 @@
<?php
function console_log($data) {
$output = $data;
if (is_array($output))
$output = implode(',', $output);
echo "<script>console.log('Debug Objects: " . $output . "' );</script>";
}