Skip to content

Instantly share code, notes, and snippets.

@iammilton82
Created August 8, 2015 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iammilton82/1b50771c9d9d2cffa050 to your computer and use it in GitHub Desktop.
Save iammilton82/1b50771c9d9d2cffa050 to your computer and use it in GitHub Desktop.
Print array and console
public function printIt($data){
echo "<pre>";
print_r($data);
echo "</pre>";
}
public function console($data){
$data = json_encode($data);
echo "<script type='text/javascript'>console.log($data)</script>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment