1
0
mirror of https://github.com/php/web-php.git synced 2026-04-01 12:12:16 +02:00
Files
archived-web-php/als99/s_fh2.php3

22 lines
371 B
PHP

<?php require "header.inc"?>
<H1>File Handling</H1>
<H4>Read into an array</H4>
<?example('<?php
$a = file("/proc/cpuinfo");
for ($i = 0; $i < count($a); $i++) {
echo $a[$i], "<BR>";
}
?>');?>
<H2>Output:</H2>
<FONT SIZE="-1">
<?php
$a = file("/proc/cpuinfo");
for ($i = 0; $i < count($a); $i++) {
echo $a[$i], "<BR>";
}
?>
</FONT>
<?php require "footer.inc"?>