I see alot of {{#variable}} and {{/variable}} used in PHP code. Most specifically in MVC and Mustache templated apps. I’ve also seen {{^variable}} and {{/variable}} used. What are they, and more importantly what are they used for?
I see alot of {{#variable}} and {{/variable}} used in PHP code. Most specifically in
Share
This is Mustache templating. You can read the docs for it here.
{{#variable}}and{{/variable}}: Section{{^variable}}and{{/variable}}: Inverted Section