Skip to content

Instantly share code, notes, and snippets.

@pickleat
Last active July 2, 2021 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pickleat/855c4fbcf817bc40f85060cf70c90b55 to your computer and use it in GitHub Desktop.
Save pickleat/855c4fbcf817bc40f85060cf70c90b55 to your computer and use it in GitHub Desktop.
PHP Code Snippets
{
// 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