在PHP中,整型可以通过两种方法转换为字符串:
(string)
$number = 123; $str = (string)$number;
.
$number = 123; $str = $number . '';
无论使用哪种方法,都可以将整型变量转换为字符串。