Skip to content

Instantly share code, notes, and snippets.

@morales2k
Created July 24, 2014 20:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save morales2k/e243d72d2fe301f05e46 to your computer and use it in GitHub Desktop.
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.
<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