mirror of
https://github.com/php/web-php.git
synced 2026-04-27 08:58:12 +02:00
21 lines
370 B
PHP
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"?>
|