PHP Classes

File: libs/Twig/test/Twig/Tests/Fixtures/filters/round.test

Recommend this page to a friend!
  Classes of william amed   Raptor 2   libs/Twig/test/Twig/Tests/Fixtures/filters/round.test   Download  
File: libs/Twig/test/Twig/Tests/Fixtures/filters/round.test
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Raptor 2
Framework that takes routes from annotations
Author: By
Last change:
Date: 8 years ago
Size: 262 bytes
 

Contents

Class file image Download
--TEST-- "round" filter --TEMPLATE-- {{ 2.7|round }} {{ 2.1|round }} {{ 2.1234|round(3, 'floor') }} {{ 2.1|round(0, 'ceil') }} {{ 21.3|round(-1)}} {{ 21.3|round(-1, 'ceil')}} {{ 21.3|round(-1, 'floor')}} --DATA-- return array() --EXPECT-- 3 2 2.123 3 20 30 20