PHP 8.4.1 Released!

trader_ceil

(PECL trader >= 0.2.0)

trader_ceilVector Ceil

Descrição

trader_ceil(array $real): array

Calculates the next highest integer for each value in real and returns the resulting array.

Parâmetros

real

Array de valores reais.

Valor Retornado

Returns an array with calculated data or false on failure.

adicione uma nota

Notas Enviadas por Usuários (em inglês) 1 note

up
0
geekgirl dot joy at gmail dot com
3 years ago
<?php

$real
= array(-7.8, 0, 0.1, 0.3, 1, 1.1, 55.1);

$result = trader_ceil($real);

var_dump($result);
/*
array(7) {
[0]=>
float(-7)
[1]=>
float(0)
[2]=>
float(1)
[3]=>
float(1)
[4]=>
float(1)
[5]=>
float(2)
[6]=>
float(56)
}
*/
To Top