Wie kann man aus einem Array alles in eine 0 umwandeln was nicht eine positive integer ist, also Zeichen?
Array soll nur integers enthalten
Collapse
X
-
Aber komischerweise werden wenn ich in einem Formular eine Zahl eingebe, diese nicht mit is_int() als integer erkannt.
Die Formularfelder sehen so aus:
<input type="text" value="anzahl[0]" />
etc
PHP Code:for($i=0; $i <= count($anzahl); $i++) {
if(!empty($anzahl[$i]) && is_int($anzahl[$i])) { // by creating a new array
$anz[] = (int)$anzahl[$i];
$art[] = (int)$artikelnummer[$i];
} else {
$anzahl[$i] = 0;
}
}
Last edited by antman; 17-11-2004, 17:00.Pickel ? Übergewicht ? Depressionen ?
Brot, Kartoffeln und Milch sind Gift!
http://www.paleofood.de
Comment
Comment