1
0
mirror of https://github.com/php/web-php.git synced 2026-03-31 03:32:23 +02:00
Files
archived-web-php/oz/s_fh2.php3
2000-03-08 02:10:21 +00:00

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"?>