Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:11906 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 94489 invoked by uid 1010); 4 Aug 2004 12:34:36 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 94443 invoked from network); 4 Aug 2004 12:34:36 -0000 Received: from unknown (HELO sapo.pt) (212.55.154.23) by pb1.pair.com with SMTP; 4 Aug 2004 12:34:36 -0000 Received: (qmail 25677 invoked from network); 4 Aug 2004 12:34:35 -0000 Received: from unknown (HELO sapo.pt) (10.134.35.157) by relay3 with SMTP; 4 Aug 2004 12:34:35 -0000 Received: (qmail 32221 invoked from network); 4 Aug 2004 12:32:37 -0000 Received: from unknown (HELO pc07653) (nunoplopes@sapo.pt@[81.193.153.201]) (envelope-sender ) by mta7 (qmail-ldap-1.03) with SMTP for ; 4 Aug 2004 12:32:37 -0000 Message-ID: <000801c47a1f$a20a37d0$0100a8c0@pc07653> To: "Wez Furlong" Cc: "PHPdev" References: <005d01c47a12$d1988450$0100a8c0@pc07653> <4e89b426040804043976e9ea50@mail.gmail.com> <016501c47a18$b9291e60$0100a8c0@pc07653> <4e89b42604080404543b5b5086@mail.gmail.com> Date: Wed, 4 Aug 2004 13:36:15 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Subject: Re: [PHP-DEV] compressed streams From: nlopess@php.net ("Nuno Lopes") Great idea, Wez! It is working now. Nuno ----- Original Message ----- > A filter != wrapper, so copying the code won't work. > Filters are preferred over wrappers for compression/decompression in any case. > > I didn't say we weren't going to fix the bug, just that it might not > be fixable; need to check into it. > > You don't *need* it, since you can always do this: > > $name = tempnam('/tmp', 'notes'); > copy("http://.....", $name); > fopen("compress.bzip://$name", 'r'); > > --Wez.