J'essaie d'effectuer une simple opération sur deux nombres, mais l'opération renvoie un résultat erroné.
Les chiffres sont par exemple 46.29
y 10
. Le premier dans la $a
et la seconde dans la variable $b
variable.
Processus
echo $a * $b
retours 460
echo 10 * 46.29
imprimer le bon nombre (462.90)
$a * 10
y
46.29 * $b
Le résultat est toujours le même : 460 !
echo $a
imprimer 46,29
echo $b
imprimer 10
echo floatval($a) * floatval($b)
imprimer 460
echo intval($a)
imprimer 46
J'ai également essayé d'utiliser bcmul
et dans ce cas, il imprimera 0.
Vous trouverez ici mon code :
include 'simple_html_dom.php';
$anno = $_POST['Anno'];
$punti = $_POST['Punti'];
$eta = $_POST['Eta'];
$ggAss = $_POST['GgAss'];
$ggParz1 = $_POST['GgParz1'];
$ggParz2 = $_POST['GgParz2'];
$ggParz3 = $_POST['GgParz3'];
$pctDM = $_POST['PctDM'];
$calcoloDM = $_POST['CalcoloDannoMorale'];
$speseMediche = $_POST['SpeseMediche'];
$spese = $_POST['Spese'];
$html = file_get_html('..\tabella'.$anno.'.php');
$rows = $html->find('tr');
// This variable is use to make sure that the correct number will be display. (there is a kind of offset in the output table).
$const = 2;
$i = 0;
$cond = false;
foreach ($rows as $row) {
$j = 0;
foreach ($row->children() as $cell) {
if($cond)
break;
//This condition is used to get punto base e indennità giornaliera
if($i == 1) {
$var1 = explode(" ", $cell->plaintext);
$indennitaGG = $var1[10]; // here we can get indennità giornaliera
}
if($i == ($eta + $const) && $j == $punti) {
$dannoBP = $cell->plaintext;
$cond = true;
break;
}
$j++;
}
$i++;
}
$calcIndGG = $indennitaGG * $ggAss;
$newVar = $indennittaGG;
echo 46.29 * 10;
$calcIndParz1 = ($indennitaGG * 75 / 100) * $ggParz1;
$calcIndParz2 = ($indennitaGG * 50 / 100) * $ggParz2;
$calcIndParz3 = ($indennitaGG * 25 / 100) * $ggParz3;
$dm = ($calcIndGG + $calcIndParz1 + $calcIndParz2 + $calcIndParz3) * $pctDM / 100;
$totale = $dannoBP + $calcIndGG + $calcIndParz1 + $calcIndParz2 + $calcIndParz3 + $dm + $speseMediche + $spese;
Quel est le problème ?
EDIT : PROBLÈME RÉSOLU avec ce code :
//This change is used to transform the variable $indennitaGG in the right form. (with the . and not with the ,). Then we can make the cast to float.
$temp = str_replace(",",".", $indennitaGG);
$indennitaGG = (float)$temp;