Jump to content
php.lv forumi

tabulas ievietošana failā


martins256

Recommended Posts

<?php
$text = array();
$text[0] = "1";
$text[1] = "2";
$text[2] = "3";
$text[3] = "4";


$i=0;
$f=fopen('tests.txt', "a+");

while ($i <= count($text)-1) {
fwrite($f, $text[$i]);
echo $text[$i].'<br>';
$i++;
}
fclose($f);
?>

 

izpildot šo kodu uz ekrāna katrs tabulas ieraksts izmetās jaunā rindiņā, bet failā visi ir blakām salikti. Kas jādara, lai failā katrs ieraksts būtu jaunā rindiņā ?

Link to comment
Share on other sites

Priekš tādas vajadzības tev galīgi nav nepieciešams taisīt ciklu:

<?php
$text = array();
$text[0] = "1";
$text[1] = "2";
$text[2] = "3";
$text[3] = "4";

$htmlcontents =  implode('<br/>',$text).'<br/>';
$filecontents = implode("\r\n",$text)."\r\n";

echo $htmlcontents;

$f=fopen('tests.txt', "a+");
fputs($f, $filecontents);
fclose($f);
?>

Ja taisi ciklu ar maing $i izmantošanu, tad tomēr laikam for() {}

$count = sizeof($text);
for($i = 0;$i < $count; $i++) {
// kods šite
}

Edited by john.brown
Link to comment
Share on other sites

×
×
  • Create New...