Created
July 24, 2014 20:36
-
-
Save morales2k/e243d72d2fe301f05e46 to your computer and use it in GitHub Desktop.
Snippet for sublime text for quickly producing print_r blocks that are pretty.
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
<snippet> | |
<content><![CDATA[ | |
echo '<pre>'; print_r(${1:ARRAY}); echo '</pre>'; | |
]]></content> | |
<description>PHP: Pretty print_r</description> | |
<scope>source.php</scope> | |
<tabTrigger>prnt</tabTrigger> | |
</snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment