PHP Classes

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

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

Contents

Class file image Download
--TEST-- "for" tag can iterate over keys and values --TEMPLATE-- {% for key, item in items %} * {{ key }}/{{ item }} {% endfor %} --DATA-- return array('items' => array('a', 'b')) --EXPECT-- * 0/a * 1/b