4种方法:1、使用“.”字符将数字变量和空字符拼接在一起,语法“$str = $num."";”;2、在要转换的数字变量之前加上用括号括起来的目标类型“(string)”,语法“(string)$num”;3、使用strval()函数,语法“strval($num)”;4、使用strval()函数,语法“settype($num,"string");”。
本教程操作环境:windows7系统、PHP8版、DELL G3电脑
php把数字转为字符串类型
方法1:使用“.”字符将数字变量和空字符拼接在一起
“.”是字符串拼接字符,可以将两个字符串拼接为一个字符串并输出
<?php header("Content-type:text/html;charset=utf-8"); $num = 12354; echo '原变量类型为:' . gettype($num) . '<br>'; $str = $num.""; echo '转换后的变量类型为:' . gettype($str) . '<br><br>'; $num = 123.54; echo '原变量类型为:' . gettype($num) . '<br>'; $str = $num.""; echo '转换后的变量类型为:' . gettype($str) . '<br><br>'; ?>
方法2:在要转换的数字变量之前加上用括号括起来的目标类型“(string)
”
使用在变量之前加上用括号括起来的目标类型,可以将指定变量强制转换为指定类型,而:
(string)
:就是强制转换成字符串类型;
<?php header("Content-type:text/html;charset=utf-8"); $num = 123.54; echo '原变量类型为:' . gettype($num) . '<br>'; $str = (string)$num; echo '转换后的变量类型为:' . gettype($str) . '<br><br>'; $num = 12354; echo '原变量类型为:' . gettype($num) . '<br>'; $str = (string)$num; echo '转换后的变量类型为:' . gettype($str) . '<br><br>'; ?>
方法3:使用strval()函数
strval() 函数用于获取变量的字符串值,可以将数字类型的值转为字符串。
<?php header("Content-type:text/html;charset=utf-8"); $num = 3.1415; echo '原变量类型为:' . gettype($num) . '<br>'; $str = strval($num); echo '转换后的变量类型为:' . gettype($str) . '<br><br>'; $num = 31415; echo '原变量类型为:' . gettype($num) . '<br>'; $str = strval($num); echo '转换后的变量类型为:' . gettype($str) . '<br><br>'; ?>
方法4:使用settype()函数
settype():用于将变量设置为指定类型(settype() 函数会改变变量原本的类型)。
<?php header("Content-type:text/html;charset=utf-8"); $num = 146; var_dump($num); settype($num,"string"); var_dump($num); ?>
说明:settype()函数第二个参数(设置的类型) 的值可以是:
"boolean" (或为"bool",从 PHP 4.2.0 起)
"integer" (或为"int",从 PHP 4.2.0 起)
"float" (只在 PHP 4.2.0 之后可以使用,对于旧版本中使用的"double"现已停用)
"string"
"array"
"object"
"null" (从 PHP 4.2.0 起)
settype()函数会影响原变量的类型。
推荐学习:《PHP视频教程》
以上是php怎么将数字转为字符串的详细内容。更多信息请关注PHP中文网其他相关文章!