PHP Classes

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

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

Contents

Class file image Download
--TEST-- Twig supports unary operators (not, -, +) --TEMPLATE-- {{ not 1 }}/{{ not 0 }} {{ +1 + 1 }}/{{ -1 - 1 }} {{ not (false or true) }} --DATA-- return array() --EXPECT-- /1 2/-2