PHP中将字符串转化为整数
(int)
<?php
$foo = "1"; // $foo 是字符串类型
$bar = (int) $foo; // $bar 是整型
?>
intval()
<?php
$foo = "1"; // $foo 是字符串类型
$bar = intval($foo); // $bar 是整型
?>
printf()
<?php
$foo = "1"; // $foo 是字符串类型
$bar = sprintf("%d", $foo); // $bar 是字符串类型
?>
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/02/18/php-convert-string-to-integer/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
THE END
0
二维码
打赏
海报
PHP中将字符串转化为整数
(int)
<?php
$foo = "1"; // $foo 是字符串类型
$bar = (int) $foo; // $bar 是整型
?>
intval()
<?php
$foo = "……
文章目录
关闭
共有 0 条评论