Wednesday, March 29, 2017

PHP 7 - Integer Division

PHP 7 introduces a new function intdiv(), which performs integer division of its operands and return the division as int.

Example

<?php
   $value = intdiv(10,3);
   var_dump($value);
   print(" ");
   print($value);
?>
It produces the following browser output −
int(3) 
3

No comments:

Post a Comment