Skip to content

Instantly share code, notes, and snippets.

@BekirUzun
Created June 16, 2017 16:00
Show Gist options
  • Select an option

  • Save BekirUzun/859e870e1f031a7c62a3eed8773e3c8b to your computer and use it in GitHub Desktop.

Select an option

Save BekirUzun/859e870e1f031a7c62a3eed8773e3c8b to your computer and use it in GitHub Desktop.
A Sublime PHP snippet for variable dumping
<snippet>
<!-- What to print when snippet triggered -->
<content><![CDATA[
echo '<pre>';
die(var_dump(\$${1:var}));
]]></content>
<!-- Shortcut. Type 'dump' then press tab to run this snippet-->
<tabTrigger>dump</tabTrigger>
<!-- Limit it with php files only -->
<scope>source.php</scope>
<!-- Snippet description -->
<description>Die with vardump</description>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment