Re: [Fwd: Re: [PHP-DEV] Renaming namespaces to packages]

2007-08-18 Thread Richard Lynch
On Wed, August 15, 2007 7:04 pm, Stanislav Malyshev wrote: While I still think it smells more like "package" than "namespace" I'm changing my vote to just call it "namespace" and be done with it. If we really feel the need to add braces support later, we can. Who knows, maybe even the file-based

Re: [Fwd: Re: [PHP-DEV] Renaming namespaces to packages]

2007-08-18 Thread emo
Stanislav Malyshev wrote: And oh the original implementation did not work either. And hey it had nestng and wasnt't bound to files. For what it worth, I think there's a link between nesting and not working :) Oh and speaking of your wiki again. Your wiki does not list any of the very hard l

[PHP-DEV] PEAR .phars upgraded

2007-08-18 Thread Gregory Beaver
Hi Ilia and list, Just to let you know, I just uploaded fixed versions of install-pear-nozlib.phar and go-pear.phar (finally) for use with the installation tarballs of PHP 5.2.4. I have tested them on linux 64 bit, linux 32 bit, and windows 32 bit. I would appreciate someone with mac OS X and wi

[PHP-DEV] Re: [PHP] HTTP 1.1 keep-alive support in ext/soap/php_http.c ? (fwd)

2007-08-18 Thread Brian A. Seklecki
Shall I submit a bug/patch to uncomment the HTTP 1.1 support? Is it still broken with proxy servers? Thanks, l8* -lava (Brian A. Seklecki - Pittsburgh, PA, USA) http://www.spiritual-machines.org/ -- Forwarded message -- Date: Tue, 14 Aug 2007 19:33:26

Re: [PHP-DEV] Issues with custom extension. [found cause - possible build bug]

2007-08-18 Thread BuildSmart
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Aug 16, 2007, at 10:08:12, Alexey Zakhlestin wrote: 1) did you try to hook into your extension with debugger? 2) is your extension open-source (I mean: can you show the actual source-code?) 3) do you develop your extension with both zts and de

Re: [Fwd: Re: [PHP-DEV] Renaming namespaces to packages]

2007-08-18 Thread Stanislav Malyshev
We might even be allowed to import a whole namespace to global and I doubt it's a good idea. Aside from obvious concern of global space pollution, there are performance concerns - global imports are very hard to resolve at compile-time and they are quite hostile to bytecode-caches (since they

Re: [PHP-DEV] [PATCH] New parameter for in_array() & array_search()

2007-08-18 Thread David Zülke
Smells like feature creep. Plus, it's difficult to document. I think it would be the first function that mutates an argument depending on another argument - it would also mean that the input array is passed as a reference in case that new flag is set. Either way, not a good idea IMO. Espe