Created
November 30, 2015 14:18
-
-
Save ThijsFeryn/db116e1ce6ab7c7a9eb5 to your computer and use it in GitHub Desktop.
PHP 7 integer division
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Integer division | |
*/ | |
var_dump( | |
intdiv(10, 3), | |
(10/3) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment