Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
$file = file('datei');
$array = array(
'name' => '',
'vorname' => ''
);
$i = 0;
while(isset($file[$i])) {
if(!($i % 2)) {
$personen[$i] = $array;
}
$personen[$i][(($i % 2) == 1 ? 'vorname' : 'name')] = $file[$i];
}
Ich würde das so machenIst ungetestet, sollte aber gehen.PHP:$file = file("datei.txt"); $ind=0; if (!$wert){ $ind1=floor($ind/2); if ($ind%2) { $name[$ind1]=$wert; } else { $vorname[$ind1]=$wert; } $ind++ } foreach($file as $wert) { $ind1=floor($ind/2); if ($ind%2) { $name[$ind1]=$wert; } else { $vorname[$ind1]=$wert; } $ind++ }
Gruß thuemmy
$file = file("datei.txt");
$ind = 0;
foreach($file as $wert) {
if ($wert != ""){
$ind1=floor($ind/2);
if ($ind%2) {
$name[$ind1]=$wert;
}
else {
$vorname[$ind1]=$wert;
}
$ind++
}
}