Jochen: Array zeilenweise in txt-Datei schreiben

Beitrag lesen

Hallo zusammen!

Ich habe ein dringendes Problem...

Ich möchte den Inhalt eines Arrays zeilenweise in eine txt Datei schreiben, was nicht wirklich funktioniert. Es macht seltsame Sachen (genaue Erklärung folgt, wenn ihr sie benötigt). Hier mein Quelltext:

<?php

$distributor_file = "../distributor.txt";
$condition   = file($distributor_file;
$endpage  = "page07.php";

if      ($sex == 1 and $bed == 1)
    {$condition[0] = $condition[0] + 1+"\r\n";}
elseif ($sex == 1 and $bed == 2)
    {$condition[1] = $condition[1] + 1+"\r\n";}
elseif ($sex == 1 and $bed == 3)
    {$condition[2] = $condition[2] + 1+"\r\n";}
elseif ($sex == 1 and $bed == 4)
    {$condition[3] = $condition[3] + 1+"\r\n";}
elseif ($sex == 2 and $bed == 1)
    {$condition[4] = $condition[4] + 1+"\r\n";}
elseif ($sex == 2 and $bed == 2)
    {$condition[5] = $condition[5] + 1+"\r\n";}
$distributor = fopen($distributor_file,"w");

for ($i=0;$i<count($condition);$i++)
    {fwrite($distributor, "$condition[$i]");}
fclose($distributor);
?>