“Redondea el número en PHP” Código de respuesta

Php redondea

// round down
echo floor(1.5); // prints 1

// round up
echo ceil(1.5); // prints 2
DenverCoder1

redondear la función incorporada PHP

echo ceil(0.5); //Prints 1
Alive Addax

PHP Round to Whole Number

$int = 8.998988776636;
round($int) //Will always be 9

$int = 8.344473773737377474;
round($int) //will always be 8
jbirch8865

2 ronda decimal usando PHP

// using round() function we can roundoff float values in php
$value = 58.24365;
round($value, 2);
//result 58.24
Ankur

PHP redondea

//round up to nearest integer
echo(ceil(0.60) . "<br>");
//result 1
Warrior

Redondea el número en PHP

<?php
$price =3206250;
$bolish = $price / 1000000;
$natija = ceil($bolish);   // 4

echo  $natija *1000000;
Shadow

Respuestas similares a “Redondea el número en PHP”

Preguntas similares a “Redondea el número en PHP”

Más respuestas relacionadas con “Redondea el número en PHP” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código