php將字串轉為小數的方法:1、使用number_format()函數,語法「number_format($str,小數位數值)」;2、利用sprintf()函數格式化字串,語法「sprintf("%.小數位數值f",$str)」。
本教學操作環境:windows7系統、PHP7.1版、DELL G3電腦
php將字串轉為小數的方法
如果是一個包含小數的字串,可以使用round()函數來將字串轉為數值,並保留指定位數的小數。
但如果不包含小數,怎麼讓字串轉換的數值有小數位呢?以下介紹兩種方法:
1、利用千位元分組來格式化數字的函數number_format()
<?php $str = "12"; echo number_format($str, 2);; ?>
2、利用sprintf格式化字串
<?php $str = "12"; echo sprintf("%.2f",$str); echo "<br>"; $str = "12.jg"; echo sprintf("%.2f",$str); ?>
#推薦學習:《PHP影片教學》
以上是php怎麼將字串轉為小數的詳細內容。更多資訊請關注PHP中文網其他相關文章!