Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

วิธีการแปลงจำนวนเงินเป็นทศนิยมและปัดเศษอย่างถูกต้องใน PHP?


ในการปัดเศษจำนวน ให้ใช้ round() ใน PHP สมมติว่าต่อไปนี้คือค่าอินพุตของเรา -

$amount=50.78;
$quantity=45.5;

แปลงให้ลอยแบบนี้

$am=(float) round($amount, 4);
$quant=(float) round($quantity, 4);

ตัวอย่าง

รหัส PHP มีดังต่อไปนี้

<!DOCTYPE html>
<html>
<body>
<?php
$amount=50.78;
$quantity=45.5;
$am=(float) round($amount, 4);
echo $am,"<br>";
$quant=(float) round($quantity, 4);
echo $quant,"<br>";
$correctAmount=round($am*$quant,4);
echo "The result is=",$correctAmount;
?>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้

50.78
45.5
The result is=2310.49