1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 17:52:16 +01:00

- Add test for floor and ceil

This commit is contained in:
Derick Rethans
2001-12-22 11:52:56 +00:00
parent 2c9f5d8a91
commit 6729156450

View File

@@ -0,0 +1,47 @@
--TEST--
Tests for floor en ceil
--POST--
--GET--
--FILE--
<?php
$a = ceil (-0); $b = ceil (-0.5); $c = ceil (-1);
$d = ceil (-1.5); $e = ceil (-1.8); $f = ceil (-2.7);
var_dump ($a, $b, $c, $d, $e, $f);
$a = ceil (0); $b = ceil (0.5); $c = ceil (1);
$d = ceil (1.5); $e = ceil (1.8); $f = ceil (2.7);
var_dump ($a, $b, $c, $d, $e, $f);
$a = floor (-0); $b = floor (-0.5); $c = floor (-1);
$d = floor (-1.5); $e = floor (-1.8); $f = floor (-2.7);
var_dump ($a, $b, $c, $d, $e, $f);
$a = floor (0); $b = floor (0.5); $c = floor (1);
$d = floor (1.5); $e = floor (1.8); $f = floor (2.7);
var_dump ($a, $b, $c, $d, $e, $f);
?>
--EXPECT--
float(0)
float(-0)
float(-1)
float(-1)
float(-1)
float(-2)
float(0)
float(1)
float(1)
float(2)
float(2)
float(3)
float(0)
float(-1)
float(-1)
float(-2)
float(-2)
float(-3)
float(0)
float(0)
float(1)
float(1)
float(1)
float(2)