PHP Classes

File: Library/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/nested_else.test

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

Contents

Class file image Download
--TEST-- "for" tag can use an "else" clause --TEMPLATE-- {% for item in items %} {% for item in items1 %} * {{ item }} {% else %} no {{ item }} {% endfor %} {% else %} no item1 {% endfor %} --DATA-- return array('items' => array('a', 'b'), 'items1' => array()) --EXPECT-- no a no b