Write to a file
- fwrite
<?php
$fd = fopen("data/out.txt", "w");
for($i=0; $i < 10; $i++) {
fwrite($fd, "Line $i\n");
}
fclose($fd);
?>
<a href="data/out.txt">File</a> should be saved by now
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
<?php
$fd = fopen("data/out.txt", "w");
for($i=0; $i < 10; $i++) {
fwrite($fd, "Line $i\n");
}
fclose($fd);
?>
<a href="data/out.txt">File</a> should be saved by now