|
|
|
จะใช้คำสั่ง if else หรือฟังชั่นอย่างไงให้ตัวเลขจุดทศนิยม เช่น 2,007.93 กับ 2,007.92 มีค่าเท่ากัน |
|
|
|
|
|
|
|
ไม่รู้ว่าตรงตามที่อยากได้ไหมนะค่ะ
Code (PHP)
<?php
$number1 = 2007.93;
$number2 = 2007.92;
$n1 = number_format($number1, 0, '.', '');
$n2 = number_format($number2, 0, '.', '');
if($n1 == $n2){
echo "equal";
}else{
echo "Not equal";
}
?>
|
|
|
|
|
Date :
2017-05-18 10:50:44 |
By :
sammam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|