Programming Code Center(PCC)
[PHP]

(PCC)::[How-to-use-Cast-float-and-string-to-integer-in-php]::[php]

File Name : index.php

<!DOCTYPE html>
<html>
<body>

<?php
// Cast float to int 
$x = 23465.768;
$int_cast = (int)$x;
echo $int_cast;
  
echo "<br>";

// Cast string to int
$x = "23465.768";
$int_cast = (int)$x;
echo $int_cast;
?>  

</body>
</html>

Output :

"; // Cast string to int $x = "23465.768"; $int_cast = (int)$x; echo $int_cast; ?>