php convert float to int code example
Example 1: php string to int
intval($string);
Example 2: convert a value to a float in php
$stringVal = "12.06";
$stringConvertedToFloat = floatval( $stringVal );
// The floatval function will return the argument converted
// to a float value if the value can be converted.
// IF the value cannot be converted these are the values that will be
// returned:
// Empty Array: returns 0. eg: floatval([]);
// Non-Empty Array: returns 1. eg: floatval(["ab", "12"])
// String with a non-numeric value as the left most character: returns 0. eg: floatval("ab12")
// String with one or more numeric values as the left most characters: returns those characters as a float. eg: floatval("12ab1") will return 12.
// Oh the joys of php
Example 3: php float to int
$int = intval($float);
Example 4: convert string to int php
s = "123";
echo intval(s); // 123
s = "hello";
echo intval(s); //0
Example 5: php "?int"
// ? means $count can be NULL or integer, maybe PHP >=7.4
private ?int $count