mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-14 03:16:34 +00:00
16 lines
243 B
Plaintext
16 lines
243 B
Plaintext
--TEST--
|
|
"cache" tag
|
|
--TEMPLATE--
|
|
{% cache 'test_%s_%s'|format(10, 10000) ttl(36000) %}
|
|
{% set content %}
|
|
ok
|
|
{% endset %}
|
|
{% apply upper %}
|
|
{{ content }}
|
|
{% endapply %}
|
|
{% endcache %}
|
|
--DATA--
|
|
return []
|
|
--EXPECT--
|
|
OK
|