Last active
July 2, 2021 14:11
-
-
Save pickleat/855c4fbcf817bc40f85060cf70c90b55 to your computer and use it in GitHub Desktop.
PHP Code Snippets
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
Show hidden characters
{ | |
// Paste these into a `.code-snippets` file in VS Code. | |
"php echo open and close": { | |
"scope": "php, html", | |
"prefix": "phpe", | |
"body": [ | |
"<?= $0; ?>" | |
] | |
}, | |
"php open and close brackets": { | |
"scope": "php, html", | |
"prefix": "php", | |
"body": [ | |
"<?php $0 ?>" | |
] | |
}, | |
"php close and open brackets": { | |
"scope": "php, html", | |
"prefix": "rphp", | |
"body": [ | |
"?>", | |
"$0", | |
"<?php" | |
] | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment