PHP Classes

File: Library/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/cycle.test

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

Contents

Class file image Download
--TEST-- "cycle" function --TEMPLATE-- {% for i in 0..6 %} {{ cycle(array1, i) }}-{{ cycle(array2, i) }} {% endfor %} --DATA-- return array('array1' => array('odd', 'even'), 'array2' => array('apple', 'orange', 'citrus')) --EXPECT-- odd-apple even-orange odd-citrus even-apple odd-orange even-citrus odd-apple