php如何将字符串数字转成整数?
使用PHP的内置函数intval
进行变量的转换操作。
<?php $foo = "1"; // $foo 是字符串类型 $bar = intval($foo); // $bar 是整型 ?>
intval函数的格式为:int intval(mixed $var [, int $base]);
相关参考:<a href="http://www.php.cn" target="_blank" style="color: rgb(0, 176, 240); text-decoration: underline;"><span style="color: rgb(0, 176, 240);">php中文网</span></a>
以上是php如何将字符串数字转成整数的详细内容。更多信息请关注PHP中文网其他相关文章!