1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
<?
define('EOL', "<br>");
function test_multiply($amount){
$amount = ereg_replace(" ", "", $amount); // on enlève les espaces
echo ("------------------------").EOL;
$x = 1;
for($i = 1; $i < 6 ; $i++){
$val_qte_stock = $amount* $x;
echo number_format($val_qte_stock, 3, '.', '') . " (x $x) ".EOL;
$x = $x * 10;
}
}
test_multiply("8 200.000"); // c'était l'espace qui posait probleme
test_multiply(2114.000);
test_multiply(-19474.750);
test_multiply(9300.000);
?> |
Partager