|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-01-16 04:58 UTC] bolk at hitv dot ru
[2005-01-17 07:46 UTC] mike@php.net
[2005-01-17 08:09 UTC] helgi at trance dot is
[2005-10-23 09:57 UTC] mike@php.net
[2006-02-26 12:39 UTC] pierre dot php at gmail dot com
[2006-02-27 02:58 UTC] bolk at hitv dot ru
[2006-02-27 11:24 UTC] pierre dot php at gmail dot com
[2006-03-14 05:51 UTC] bolk at hitv dot ru
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 03:00:01 2025 UTC |
Description: ------------ I've compiled ZIP package as shared module. Package walk through the entire archive but doesn't read entry content. Reproduce code: --------------- <? $zip = zip_open($_FILES['file']['tmp_name']); if ($zip) { while ($zip_entry = zip_read($zip)) { $txt = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry)); echo $txt; } } ?> Expected result: ---------------- variable $txt is empty Actual result: -------------- file content in $txt