“Twig Ternary” Code-Antworten

Twig Ternary

/* Twig Ternary */
{{  var == 'value1' ? 'true output' : 'false output' }}
/* Twig If */
{% if var == 'value1' %}
	{{ do_this }}
{% elseif var == 'value2' %}
	{{ do_this }}
{% else %}
	{{ do_this }}
{% endif %}
/* Twig Set Var */ 
{% set var = 'value' %}
13Garth

Zweig, wenn ternärische Überprüfung

{{ foo ?: 'no' }} is the same as {{ foo ? foo : 'no' }}
{{ foo ? 'yes' }} is the same as {{ foo ? 'yes' : '' }}
kilamieaz

Ähnliche Antworten wie “Twig Ternary”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen