1
0
mirror of https://github.com/php/web-php.git synced 2026-04-28 09:23:14 +02:00
Files
archived-web-php/oreilly99/s_filehandling2.php3
T
1999-08-21 16:11:20 +00:00

21 lines
370 B
PHP

<?php require "header.inc"?>
<H1>C-like File Handling</H1>
<H4>Reading from a file</H4>
<?example('<?php
$file = fopen("sample.txt", "r");
while (!feof($file)) {
echo fgets($file, 1024), "<BR>";
}
?>');?>
<H4>Writing to a file</H4>
<?example('<?php
$file = fopen("agent.log", "a");
fputs($file, $HTTP_USER_AGENT."\n");
?>');?>
</UL>
<?php require "footer.inc"?>