53063593e3
Final
9 lines
168 B
PHP
9 lines
168 B
PHP
<?php
|
|
$fh = fopen("testfile.txt", 'r') or
|
|
die("File does not exist or you lack permission to open it");
|
|
|
|
$text = fread($fh, 3);
|
|
fclose($fh);
|
|
echo $text;
|
|
?>
|