mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-07 07:57:01 +00:00
13 lines
230 B
Plaintext
13 lines
230 B
Plaintext
--TEST--
|
|
"include" function accept variables
|
|
--TEMPLATE--
|
|
{{ include("foo.twig", {'foo': 'bar'}) }}
|
|
{{- include("foo.twig", vars) }}
|
|
--TEMPLATE(foo.twig)--
|
|
{{ foo }}
|
|
--DATA--
|
|
return ['vars' => ['foo' => 'bar']]
|
|
--EXPECT--
|
|
bar
|
|
bar
|