Created
July 8, 2024 00:45
-
-
Save elliott-w/1a4efffa2dfd20c1b0b63c6aef2c4c78 to your computer and use it in GitHub Desktop.
HTML Snippets in PHP
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
{ | |
// Place your snippets for html here. Each snippet is defined under a snippet name and has a prefix, body and | |
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the | |
// same ids are connected. | |
// Example: | |
// "Print to console": { | |
// "prefix": "log", | |
// "body": [ | |
// "console.log('$1');", | |
// "$2" | |
// ], | |
// "description": "Log output to console" | |
// } | |
"php": { | |
"prefix": "php", | |
"body": [ | |
"<?php $0 ?>", | |
], | |
}, | |
"echo": { | |
"prefix": "echo", | |
"body": [ | |
"<?= $0 ?>", | |
], | |
}, | |
"fields": { | |
"prefix": "f", | |
"body": [ | |
"<?= \\$fields['$0'] ?>", | |
], | |
}, | |
"if": { | |
"prefix": "if", | |
"body": [ | |
"<?php if ($1) : ?>", | |
"$0", | |
"<?php endif; ?>" | |
], | |
}, | |
"else": { | |
"prefix": "else", | |
"body": [ | |
"<?php else: ?>", | |
], | |
}, | |
"while": { | |
"prefix": "while", | |
"body": [ | |
"<?php while ($1) : ?>", | |
"$0", | |
"<?php endwhile; ?>" | |
], | |
}, | |
"foreach": { | |
"prefix": "for", | |
"body": [ | |
"<?php foreach ($1) : ?>", | |
"$0", | |
"<?php endforeach; ?>" | |
], | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment