Files
2025-03-12 17:06:23 +01:00

7 lines
114 B
PHP

<?php
if ($handle) {
while (!feof($handle)) {
print fread($handle, 8192);
}
fclose($handle);
}