轉換方法:1、使用number_format()函數,語法「number_format(int型別的數值,小數位數)」;2、使用sprintf()函數,語法「sprintf("%.xf", int型別的值)”,參數x為小數位數。
本教學操作環境:windows7系統、PHP7.1版、DELL G3電腦
php將int(整數)型別轉為小數
方法1:使用number_format()函數
number_format()可透過千位元分組來格式化數字。
<?php echo number_format(12,1)."<br>"; echo number_format(12,2)."<br>"; echo number_format(12,3)."<br>"; echo number_format(12,4)."<br>"; ?>
方法2:使用sprintf()函數
sprintf() 函數把格式化的字串寫入變數中。
<?php echo sprintf("%.1f",12)."<br>"; echo sprintf("%.2f",13)."<br>"; echo sprintf("%.3f",14)."<br>"; echo sprintf("%.4f",15)."<br>"; ?>
推薦學習:《PHP影片教學》
以上是php怎麼將int(整數)型別轉為小數的詳細內容。更多資訊請關注PHP中文網其他相關文章!