(PCC)::[How-to-use-Cast-float-and-string-to-integer-in-php]::[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>