PriymakVl
4/10/2020 - 6:01 AM

php7 intdiv

php7 intdiv

<?php

// php7
intdiv(10, 3) = 3;

// php5
floor(10/3) = 3;
// or
(int)(10/3) = 3;