|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-12-21 14:13 UTC] pajoye@php.net
[2009-03-23 21:19 UTC] fin dot bub at gmail dot com
[2010-12-20 14:24 UTC] jani@php.net
-Package: Feature/Change Request
+Package: Zip Related
[2015-07-17 10:35 UTC] cmb@php.net
-Operating System: Windows XP/Slackware
+Operating System: *
-PHP Version: 5.2.5
+PHP Version: 5.6.11
[2017-10-24 07:37 UTC] kalle@php.net
-Status: Assigned
+Status: Open
-Assigned To: pajoye
+Assigned To:
[2020-03-18 13:39 UTC] remi@php.net
-Status: Open
+Status: Feedback
[2020-03-18 13:39 UTC] remi@php.net
[2020-03-29 04:22 UTC] php-bugs at lists dot php dot net
[2020-03-29 05:13 UTC] requinix@php.net
-Status: No Feedback
+Status: Wont fix
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 21:00:01 2025 UTC |
Description: ------------ trying to create a zip file directly on standard output Reproduce code: --------------- $zip = new ZipArchive(); $zip->open("php://output", ZIPARCHIVE::CREATE); $zip->addFromString("testfile.txt", "This is a test"); $zip->close(); Expected result: ---------------- i expect a zip file sent on standard output Actual result: -------------- no output