mirror of
https://github.com/php/web-php.git
synced 2026-03-31 03:32:23 +02:00
22 lines
371 B
PHP
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"?>
|