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