Skip to content

Instantly share code, notes, and snippets.

@victorwyee
Created April 12, 2020 04:32
Show Gist options
  • Select an option

  • Save victorwyee/396d02ad1a22aee94f170b2b325097a4 to your computer and use it in GitHub Desktop.

Select an option

Save victorwyee/396d02ad1a22aee94f170b2b325097a4 to your computer and use it in GitHub Desktop.
PHP print to console.
function print_to_console($data) {
$output = $data;
if (is_array($output))
$output = implode(',', $output);
echo "<script>console.log('Debug Objects: " . $output . "' );</script>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment