mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-15 11:56:50 +00:00
11 lines
201 B
Plaintext
11 lines
201 B
Plaintext
--TEST--
|
|
Twig supports string interpolation
|
|
--TEMPLATE--
|
|
{{ "foo #{"foo #{bar} baz"} baz" }}
|
|
{{ "foo #{bar}#{bar} baz" }}
|
|
--DATA--
|
|
return ['bar' => 'BAR']
|
|
--EXPECT--
|
|
foo foo BAR baz baz
|
|
foo BARBAR baz
|