PHP中将字符串转化为整数(int) intval() printf()

时间:2021-06-11 11:23:43

int

 <?php
$foo = "1"; // $foo 是字符串类型
$bar = (int)$foo; // $bar 是整型
?>

intval

 <?php
$foo = "1"; // $foo 是字符串类型
$bar = intval($foo); // $bar 是整型
?>

sprintf

 <?php
$foo = "1"; // $foo 是字符串类型
$bar = sprintf("%d", $foo); // $bar 是字符串类型
?>