Skip to content

Instantly share code, notes, and snippets.

@stratigos
Created May 2, 2014 16:02
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 stratigos/5965fa3edea360209739 to your computer and use it in GitHub Desktop.
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
<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