5 lines
91 B
PHP
5 lines
91 B
PHP
<?php
|
|
if ($handle) {
|
|
while (!feof($handle)) echo fread($handle, 8192);
|
|
fclose($handle);
|
|
} |