Home > Article > Backend Development > How to convert integer to string in php
php method to convert integers to strings: You can use the strval() function to convert, such as [strval(123)]. The strval() function is used to obtain the string value of a variable. It should be noted that the parameter cannot be an array or object.
#strval() function is used to get the string value of a variable.
(Recommended tutorial: php video tutorial)
Syntax:
string strval ( mixed $var )
Note:
$var can be any scalar type , but cannot be an array or object.
Example:
<?php $int_str= 123; var_dump($int_str); $str = strval(123); var_dump($str); ?>
Output result:
int(123) string(3) "123"
Related recommendations:php training
The above is the detailed content of How to convert integer to string in php. For more information, please follow other related articles on the PHP Chinese website!