Easy Tutorial
❮ Func Xml Parser Create Ns Func Date Gmstrftime ❯

PHP intdiv() Function

PHP 7 New Features

PHP 7 introduced the intdiv() function, which takes two parameters and returns the integer division of the first parameter by the second parameter.

Example

<?php
echo intdiv(9, 3), PHP_EOL;
echo intdiv(10, 3), PHP_EOL;
echo intdiv(5, 10), PHP_EOL;
?>

The above program outputs:

3
3
0

PHP 7 New Features

❮ Func Xml Parser Create Ns Func Date Gmstrftime ❯