RE: [PHP-DEV] RSS feed for bugs.php.net

2006-09-27 Thread Andi Gutmans
Cool. Yes, generating that link would be *very* useful. Can someone hack that up? > -Original Message- > From: Philip Olson [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 27, 2006 7:37 PM > To: Andi Gutmans > Cc: internals@lists.php.net > Subject: Re: [PHP-DEV] RSS feed for bugs.

Re: [PHP-DEV] RSS feed for bugs.php.net

2006-09-27 Thread Philip Olson
Do we have an RSS feed for bugs.php.net? It would really help maintainers keep on top of bugs opened for their extension as email isn't great because a lot of it gets filtered into the generic PHP Bugs folders :) There are a couple of unadvertised files here: http://bugs.php.net/rss/

[PHP-DEV] RSS feed for bugs.php.net

2006-09-27 Thread Andi Gutmans
Do we have an RSS feed for bugs.php.net? It would really help maintainers keep on top of bugs opened for their extension as email isn't great because a lot of it gets filtered into the generic PHP Bugs folders :) Thoughts? Andi -- PHP Internals - PHP Runtime Development Mailing List To unsubscr

Re: [PHP-DEV] Can't compile PHP6 snapshot

2006-09-27 Thread Antony Dovgal
Derick has fixed it in CVS ~1 hour ago. Thanks for the heads up. On 27.09.2006 15:18, Markus Fischer wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Markus Fischer wrote: I've trouble compiling the snapshot, it bails out in php_apache.c . =Configure= ./configure --prefix=/opt/php6 --ena

Re: [PHP-DEV] array/HashTable filling optimization

2006-09-27 Thread Nuno Lopes
Aaahh nice catch ;) From a quick lookup in PHP sources I also found these functions were the same optimization can be applied: zend_default_exception_new_ex() - trivial convert_to_array() - not as easy as others zend_object_std_init() - possibly clone_wrapper_hash() - trivial (php-src/main/stre

[PHP-DEV] Per-request UG(unicode)

2006-09-27 Thread Andrei Zmievski
Andi asked me to forward this, since it didn't go through to the list on the first try. Hi, The following is a patch Dmitry did to change UG(unicode) to be configurable per-request. The guidelines from Andrei was that it shouldn't make the extension code much more complicated and with this p

[PHP-DEV] array/HashTable filling optimization

2006-09-27 Thread Matt W
Hi all, I noticed awhile ago how most every use of zend[_u]_hash_init has nSize as 0. Of course it isn't always known how many elements will be added to the array (nTableSize), but there are places where an accurate value could be used instead of getting the minimum default (8). For anyone who d

Re: [PHP-DEV] Can't compile PHP6 snapshot

2006-09-27 Thread Markus Fischer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Markus Fischer wrote: > I've trouble compiling the snapshot, it bails out in php_apache.c . > > =Configure= > ./configure --prefix=/opt/php6 --enable-bcmath --enable-calendar [...] I can compile a cli/cgi version, but not the with apache support. Wh