BigFileTools icon indicating copy to clipboard operation
BigFileTools copied to clipboard

Manipulate files over 2GB in PHP on all platforms with byte-precision without headache

Results 4 BigFileTools issues
Sort by recently updated
recently updated
newest added

In [Curl driver](https://github.com/jkuchar/BigFileTools/blob/master/src/Driver/CurlDriver.php#L21) headers aren't returned, example: ```php $ch = curl_init('file:///c:/foo/bar/baz.txt'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HEADER, true); curl_setopt($ch, CURLOPT_NOBODY, true); $headers = curl_exec($ch); curl_close($ch); var_dump($headers); ``` In PHP 7.2 (and...