PHP Classes

File: Library/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/null_coalesce.test

Recommend this page to a friend!
  Classes of Duong Huynh Nghia   Lego PHP   Library/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/null_coalesce.test   Download  
File: Library/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/null_coalesce.test
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Lego PHP
Blog and shopping cart system
Author: By
Last change:
Date: 7 years ago
Size: 462 bytes
 

Contents

Class file image Download
--TEST-- Twig supports the ?? operator --TEMPLATE-- {{ 'OK' ?? 'KO' }} {{ null ?? 'OK' }} {{ bar ?? 'KO' }} {{ baz ?? 'OK' }} {{ foo.bar ?? 'KO' }} {{ foo.missing ?? 'OK' }} {{ foo.bar.baz.missing ?? 'OK' }} {{ foo['bar'] ?? 'KO' }} {{ foo['missing'] ?? 'OK' }} {{ nope ?? nada ?? 'OK' }} {{ 1 + nope ?? nada ?? 2 }} {{ 1 + nope ?? 3 + nada ?? 2 }} --DATA-- return array('bar' => 'OK', 'foo' => array('bar' => 'OK')) --EXPECT-- OK OK OK OK OK OK OK OK OK OK 3 6