Created
May 2, 2014 16:02
-
-
Save stratigos/5965fa3edea360209739 to your computer and use it in GitHub Desktop.
Sublime 2 Snippet for a recursive print and die in PHP, for debugging
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); | |
echo('</pre>'); | |
die(); | |
]]></content> | |
<tabTrigger>die</tabTrigger> | |
<scope>source.php</scope> | |
<description>Recursive Die</description> | |
</snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment