PHP Classes

File: Library/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/simple.test

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

Contents

Class file image Download
--TEST-- macro --TEMPLATE-- {% import _self as test %} {% from _self import test %} {% macro test(a, b) -%} {{ a|default('a') }}<br /> {{- b|default('b') }}<br /> {%- endmacro %} {{ test.test() }} {{ test() }} {{ test.test(1, "c") }} {{ test(1, "c") }} --DATA-- return array(); --EXPECT-- a<br />b<br /> a<br />b<br /> 1<br />c<br /> 1<br />c<br />