3 ms·
PHP readfile is all about « streaming » GB size files to stdout, not so much returning a whole file in a single buffer (but file_get_contents is and might, inde
by 131hn 7y ago
PHP readfile is all about « streaming » GB size files to stdout, not so much returning a whole file in a single buffer (but file_get_contents is and might, indeed, benefit from the new readfile syscall )
- ape4 7y agoThanks, that was what I meant.