Releases: stnvh/php-partialzip
Releases · stnvh/php-partialzip
0.2.1
0.2.0
- Cleanup code
- Prevent
httpRequest
reuse - Removed use of curl callbacks (this ain't quite C)
- Stop using object props for throwaway data (fileName, EOCD, Local file headers, etc.)
- Variable names make some sort of sense now
- Prevent
- Removed outputting directly from
get()
: useecho
lazy! - Merged fix:
PartialData->tempName
assignment (Closes #5)
0.1.6
0.1.5
- Added checks for
Accept-Ranges: bytes
header on initialisation instead of limiting execution to 15 seconds!- [internal] Added header parser to the
Zip->httpRequest
function
- [internal] Added header parser to the
- Use
ob_clean()
only when directly outputting file contents to browser - PHP 5.3 compatibility added
- Added correct usage of switch (forgot breaks) in decompression selection
Bump to 0.1.4
- Iteration optimisations; no longer needs to iterate to search for EOCD, uses strstr for neatness.
- Added zip header info magic calls to file objects
- Improved error handling for most function arguments
- Updated README to reflect changes