PHP Classes

File: Library/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/if/basic.test

Recommend this page to a friend!
  Classes of Duong Huynh Nghia   Lego PHP   Library/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/if/basic.test   Download  
File: Library/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/if/basic.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: 291 bytes
 

Contents

Class file image Download
--TEST-- "if" creates a condition --TEMPLATE-- {% if a is defined %} {{ a }} {% elseif b is defined %} {{ b }} {% else %} NOTHING {% endif %} --DATA-- return array('a' => 'a') --EXPECT-- a --DATA-- return array('b' => 'b') --EXPECT-- b --DATA-- return array() --EXPECT-- NOTHING