cleaning up file io bits a touch
This commit is contained in:
parent
3617a08430
commit
295db7cee7
@ -2,79 +2,18 @@
|
|||||||
|
|
||||||
require_once('_head.php');
|
require_once('_head.php');
|
||||||
|
|
||||||
|
$DATASTORE = 'writable/datastore.txt';
|
||||||
|
|
||||||
mkheader('files!', '#aaa');
|
mkheader('files!', '#aaa');
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<!-- ======================================================= -->
|
|
||||||
<pre><?php
|
|
||||||
|
|
||||||
// do nothing!
|
|
||||||
$handle = fopen('data.txt', 'r');
|
|
||||||
fclose($handle);
|
|
||||||
print "didn't actually do anything here ...";
|
|
||||||
|
|
||||||
?></pre>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======================================================= -->
|
|
||||||
<pre><?php
|
|
||||||
|
|
||||||
// get everything!
|
|
||||||
echo file_get_contents('data.txt');
|
|
||||||
|
|
||||||
?></pre>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======================================================= -->
|
|
||||||
<pre><?php
|
|
||||||
|
|
||||||
$lines = file('data.txt');
|
|
||||||
|
|
||||||
foreach($lines as $key => $line) {
|
|
||||||
$linenum = $key + 1;
|
|
||||||
print "Line $linenum: $line";
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
?></pre>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======================================================= -->
|
|
||||||
<pre><?php
|
|
||||||
|
|
||||||
$handle = fopen('data.txt', 'r');
|
|
||||||
$first24chars = fread($handle, 24);
|
|
||||||
fclose($handle);
|
|
||||||
|
|
||||||
print $first24chars;
|
|
||||||
|
|
||||||
?></pre>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======================================================= -->
|
|
||||||
<pre><?php
|
|
||||||
|
|
||||||
$outfile = 'writable/fileio-' . time() . '-' . rand() . '.txt';
|
|
||||||
$handle = fopen($outfile, 'w');
|
|
||||||
|
|
||||||
$outdata = $_GET['out'] ? $_GET['out'] . "\n" : "Like this?\n";
|
|
||||||
|
|
||||||
fwrite($handle, $outdata);
|
|
||||||
fclose($handle);
|
|
||||||
|
|
||||||
print "<a href=/$outfile>wrote stuff</a>";
|
|
||||||
|
|
||||||
?></pre>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ======================================================= -->
|
<!-- ======================================================= -->
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$datastore = 'writable/datastore.txt';
|
if (file_exists($DATASTORE)) {
|
||||||
if (file_exists($datastore)) {
|
$data = file_get_contents($DATASTORE);
|
||||||
$data = file_get_contents($datastore);
|
|
||||||
} else {
|
} else {
|
||||||
$data = "";
|
$data = "";
|
||||||
}
|
}
|
||||||
@ -93,7 +32,7 @@ mkheader('files!', '#aaa');
|
|||||||
} else {
|
} else {
|
||||||
|
|
||||||
$data = $_POST['data'];
|
$data = $_POST['data'];
|
||||||
$handle = fopen($datastore, 'w');
|
$handle = fopen($DATASTORE, 'w');
|
||||||
fwrite($handle, str_replace(array("\r\n"), "\n", $data));
|
fwrite($handle, str_replace(array("\r\n"), "\n", $data));
|
||||||
fclose($handle);
|
fclose($handle);
|
||||||
|
|
||||||
@ -105,9 +44,54 @@ mkheader('files!', '#aaa');
|
|||||||
|
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ======================================================= -->
|
||||||
|
<pre><?php
|
||||||
|
|
||||||
|
// do nothing!
|
||||||
|
$handle = fopen($DATASTORE, 'r');
|
||||||
|
fclose($handle);
|
||||||
|
print "didn't actually do anything here ...";
|
||||||
|
|
||||||
|
?></pre>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ======================================================= -->
|
||||||
|
<pre><?php
|
||||||
|
|
||||||
|
// get everything!
|
||||||
|
echo file_get_contents($DATASTORE);
|
||||||
|
|
||||||
|
?></pre>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ======================================================= -->
|
||||||
|
<pre><?php
|
||||||
|
|
||||||
|
$lines = file($DATASTORE);
|
||||||
|
|
||||||
|
foreach($lines as $key => $line) {
|
||||||
|
$linenum = $key + 1;
|
||||||
|
print "Line $linenum: $line";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
?></pre>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ======================================================= -->
|
||||||
|
<pre><?php
|
||||||
|
|
||||||
|
$handle = fopen($DATASTORE, 'r');
|
||||||
|
$first24chars = fread($handle, 24);
|
||||||
|
fclose($handle);
|
||||||
|
|
||||||
|
print $first24chars;
|
||||||
|
|
||||||
|
?></pre>
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user