Skip to content

Instantly share code, notes, and snippets.

@dantoncancella
Last active December 11, 2015 07:09
Show Gist options
  • Save dantoncancella/4564399 to your computer and use it in GitHub Desktop.
Save dantoncancella/4564399 to your computer and use it in GitHub Desktop.
PHP var_dump snippets
// PHP var_dump snipper for NetBeans
echo '<pre>';
die(var_dump(${VARIABLE variableFromPreviousAssignment default="$variable"}));
<!-- PHP var_dump snipper for Sublime Text 2 -->
<snippet>
<content><![CDATA[
${1:echo '<pre>';}
die(var_dump(${2:\$var}));
]]></content>
<tabTrigger>dump</tabTrigger>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment