Created
June 16, 2017 16:00
-
-
Save BekirUzun/859e870e1f031a7c62a3eed8773e3c8b to your computer and use it in GitHub Desktop.
A Sublime PHP snippet for variable dumping
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> | |
| <!-- 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