PHP Classes

File: Library/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/postfix.test

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

Contents

Class file image Download
--TEST-- Twig parses postfix expressions --TEMPLATE-- {% import _self as macros %} {% macro foo() %}foo{% endmacro %} {{ 'a' }} {{ 'a'|upper }} {{ ('a')|upper }} {{ -1|upper }} {{ macros.foo() }} {{ (macros).foo() }} --DATA-- return array(); --EXPECT-- a A A -1 foo foo