国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

PHP intdiv() function

PHP intdiv() function

PHP 7 has newly added the intdiv() function, which receives two parameters and returns the value of the first parameter divided by the second parameter and rounded .

Example

<?php

echo intdiv(9,3),echo "<br/>";

echo intdiv(10,3),echo "<br/>";

echo intdiv(5,10),echo "<br/>";

?>

The above program execution output result is:

3
3
0
Continuing Learning
||
<?php echo intdiv(9,3),echo "<br/>"; echo intdiv(10,3),echo "<br/>"; echo intdiv(5,10),echo "<br/>"; ?>
submitReset Code