Skip to content

Instantly share code, notes, and snippets.

@ajdeguzman
Created February 20, 2015 05:15
Show Gist options
  • Save ajdeguzman/af1598a308286b1a52f2 to your computer and use it in GitHub Desktop.
Save ajdeguzman/af1598a308286b1a52f2 to your computer and use it in GitHub Desktop.
public function debug_to_console($data) {
if(is_array($data) || is_object($data)) {
echo("<script>console.log('PHP: ".json_encode($data)."');</script>");
} else {
echo("<script>console.log('PHP: $data');</script>");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment