Hallo Maresa.
vielen Dank für Deinen Tip. Funktioniert aber leider auch nicht:
$von[0] = intval($von[0]);
echo $von[0];// => 0
Schon einmal gettype() über $von[0] gejagt?
Folgende Testsuite funktioniert bei mir einwandfrei und unterscheidet sich kaum von deiner:
$test = array(0 => "200", 1 => "300");
echo $test[0].", Typ: ".gettype($test[0])."<br />";
$test[0] = intval($test[0]);
echo $test[0].", Typ: ".gettype($test[0])."<br />";
Gruß, Ashura
--
Selfcode: sh:( fo:) ch:? rl:( br:^ n4:& ie:{ mo:) va:) de:> zu:) fl:( ss:| ls:[ js:|
30 Days to becoming an Opera8 Lover -- Day 15: Mouse Gestures
Meine Browser: Opera 8.0 | Firefox 1.0.4 | Lynx 2.8.3 | Netscape 4.7 | IE 6.0
IE Layout-Workaround №1: <!--[if IE]><style type="text/css">*{display:none;}</style><![endif]-->
Selfcode: sh:( fo:) ch:? rl:( br:^ n4:& ie:{ mo:) va:) de:> zu:) fl:( ss:| ls:[ js:|
30 Days to becoming an Opera8 Lover -- Day 15: Mouse Gestures
Meine Browser: Opera 8.0 | Firefox 1.0.4 | Lynx 2.8.3 | Netscape 4.7 | IE 6.0
IE Layout-Workaround №1: <!--[if IE]><style type="text/css">*{display:none;}</style><![endif]-->