Sophie: PHP rechnet falsch?

Beitrag lesen

Hallo Tom,

dann erhalte ich folgendes


$A = str_replace(",", ".", $array['gewichtinklverpackung']);
$B = str_replace(",", ".", $array['gewicht']);

$gewicht_mV += $A*$array['menge'];
$gewicht_oV += $B*$array['menge'];

var_dump($gewicht_mV);
echo "<br>";
var_dump($gewicht_oV);

int(0) 
int(24) int(0) 
float(28.2) float(73.8) 
float(96) float(1673.8) 
float(96)