Last active
August 29, 2015 14:02
-
-
Save naneri/4b8a27384252f0288117 to your computer and use it in GitHub Desktop.
Dumps the $variable and displays it nicely. After that finishes the script. This Gist can be set as a code snippet in Netbeans / Notepad++ / Any other editor, so that it can be used to quickly find out, what is inside the variable.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "<pre>"; print_r($variable); echo "</pre>"; | |
exit; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment