what will do ceil() and floor() in PHP?

Answers were Sorted based on User's Feedback



what will do ceil() and floor() in PHP?..

Answer / saurabh rastogi

$var=7.5;
$c_var=ceil($var);

echo $c_var; // Outputs 8


$var=7.5
$c_var=floor($var);

echo $c_var; // Outputs 7

Is This Answer Correct ?    29 Yes 2 No

what will do ceil() and floor() in PHP?..

Answer / nikunj

ceil() func. gives nearest max values of passing value.

floor() func. gives nearest min values of passing value.

see above example

Is This Answer Correct ?    14 Yes 2 No

what will do ceil() and floor() in PHP?..

Answer / paul

ceil() give you the upper number of a fraction.
eg.

ceil(3.0)=3
ceil(3.1)=4
ceil(3.3)=4
ceil(3.5)=4
ceil(3.7)=4

floor() does ceil()'s opposite it returns the lower number
of the fraction

floor(3.0)=3
floor(3.1)=3
floor(3.3)=3
floor(3.5)=3
floor(3.7)=3

Is This Answer Correct ?    9 Yes 0 No

what will do ceil() and floor() in PHP?..

Answer / nilsoft

ceil()
Returns the next highest integer value by rounding up value
if necessary.

<?php
echo ceil(4.3); // 5
echo ceil(9.999); // 10
echo ceil(-3.14); // -3
?>



floor()

Returns the next lowest integer value by rounding down value
if necessary.
<?php
echo floor(4.3); // 4
echo floor(9.999); // 9
echo floor(-3.14); // -4
?>

Is This Answer Correct ?    6 Yes 0 No

what will do ceil() and floor() in PHP?..

Answer / rakesh kumar nautiyal

ceil() return the absolute value of a given var while floor
() return a true value of given variable

Is This Answer Correct ?    4 Yes 3 No

Post New Answer

More PHP Interview Questions

What is php regular expression?

0 Answers  


What is env in laravel?

0 Answers  


What is php limit?

0 Answers  


How can I use single quotes in single quotes in php?

0 Answers  


When to use get and post request?

0 Answers  






What is the use of inner join in mysql?

0 Answers  


How do you match the character ^ at the beginning of the string? - ^^

1 Answers  


i am a 3yr diploma holder(CSE) from bangalore and i got job as php developer.. starting 7.5k... but i dont know what is the future carreer scop for diploma holders(for me)...plz help

2 Answers   Wipro,


How to open a file in php?

0 Answers  


What is local variable in php?

0 Answers  


How do you debug php?

0 Answers  


How many types of functions are there in php?

0 Answers  


Categories