亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

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