php把數值轉換成字串的方法:可以利用strval()函數來進行轉換。strval()函數用於獲取變數的字串值並返回,該函數不能以陣列或物件做參數。具體使用方法如:【strval((123)】。
strval() 函數用於獲取變數的字串值並返回。
(推薦教學:)
語法格式:
string strval ( mixed $var )
參數說明:
$var: 可以是任何標量型別,但不能是陣列或物件。
(視訊教學推薦:)
程式碼實現:
<?php $int_str= 123; var_dump($int_str); $str = strval(123); var_dump($str); ?>
輸出結果:
int(123) string(3) "123"
以上就是php怎樣把數值轉換成字串的詳細內容,更多請關注php中文網其它相關文章!