Answers for "convert float to integer laravel"

PHP
0

convert float to integer laravel

$floatValue = 4.5;
echo intval($floatValue) //returns 4
  
$floatValue = 4.4;
echo intval($floatValue) //returns 4
  
$floatValue = 4.5;
echo round($floatValue) //returns 5
  
$floatValue = 4.4;
echo round($floatValue) //returns 4
Posted by: Guest on March-04-2022

Code answers related to "convert float to integer laravel"

Browse Popular Code Answers by Language