在 PHP 中,numeric 类型用于表示数字,包括整数和浮点数。处理 numeric 类型时,需要注意以下几点:
// 强制类型转换
$num1 = (int) "123";
$num2 = (float) "123.45";
// 类型提示
function addNumbers(int $num1, float $num2): int {
return $num1 + $num2;
}
$result = addNumbers(123, 123.45);
$sum = 10 + 20; // $sum 是 int 类型
$difference = 10 - 20; // $difference 是 int 类型
$product = 10 * 20; // $product 是 int 类型
$quotient = 10 / 20; // $quotient 是 float 类型
$isGreater = 10 > 20; // $isGreater 是 bool 类型
$isEqual = 10 == 20; // $isEqual 是 bool 类型
is_numeric()
函数可以检查变量是否为 numeric 类型。$str = "123";
if (is_numeric($str)) {
echo "The variable is a numeric type.";
} else {
echo "The variable is not a numeric type.";
}
intval()
、floatval()
和 strval()
等函数,用于在不同类型之间进行转换。$intVal = intval("123"); // $intVal 是 int 类型
$floatVal = floatval("123.45"); // $floatVal 是 float 类型
$strVal = strval(123); // $strVal 是 string 类型