mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-12 02:16:41 +00:00
11 lines
234 B
Plaintext
11 lines
234 B
Plaintext
--TEST--
|
|
"constant" function
|
|
--TEMPLATE--
|
|
{{ constant('DATE_W3C') == expect ? 'true' : 'false' }}
|
|
{{ constant('ARRAY_AS_PROPS', object) }}
|
|
--DATA--
|
|
return ['expect' => DATE_W3C, 'object' => new \ArrayObject(['hi'])]
|
|
--EXPECT--
|
|
true
|
|
2
|