7 lines
114 B
PHP
7 lines
114 B
PHP
<?php
|
|
if ($handle) {
|
|
while (!feof($handle)) {
|
|
print fread($handle, 8192);
|
|
}
|
|
fclose($handle);
|
|
} |