ref https://bugs.php.net/bug.php?id=39135 ,
i was thinking about how to implement HTTP Range requests/HTTP 206 Partial
Content in userland php,
and ofc it's possible to implement using fread() loops, but it'd be easier
(and faster? presumably) to implement if fpassthru() natively supported a
$max_
for whatever reason, searching for "fpassthru" on bugs.php.net does not
find https://bugs.php.net/bug.php?id=39135 ,
titled "fpassthru with optional argument length" - screenshot:
https://i.imgur.com/gUjNYBz.png
that nearly caused me to make a duplicate of 39135 today
Le 30/10/2021 à 11:39, Hans Henrik Bergan a écrit :
ref https://bugs.php.net/bug.php?id=39135 ,
i was thinking about how to implement HTTP Range requests/HTTP 206 Partial
Content in userland php,
and ofc it's possible to implement using fread() loops, but it'd be easier
(and faster? presumably)