Re: [PHP-DEV] Return type hints

2008-04-16 Thread Arvids Godjuks
2008/4/15, Felipe Pena [EMAIL PROTECTED]: Em Ter, 2008-04-15 às 01:05 -0400, Sam Barrow escreveu: If somebody does have a patch for this or is working on one let me know. Whether this will be implemented or not I would like to assist with this patch so I can use it for personal use at the

Re: [PHP-DEV] intl naming

2008-04-16 Thread Pierre Joye
Hi, On Tue, Apr 15, 2008 at 12:35 AM, Pierre Joye [EMAIL PROTECTED] wrote: to know what to think about my API changes proposal and the exception usages as it is a relatively important request. Or why are you asking? I already stated my opinion about exceptions - I consider

Re: [PHP-DEV] intl naming

2008-04-16 Thread Pierre Joye
On Wed, Apr 16, 2008 at 3:21 PM, Pierre Joye [EMAIL PROTECTED] wrote: Please find a patch as attachment, fixing some bad #ifdef. This test should be in the main intl header, imo. Forgot to attach a second for config.w32, to nicely detect the required libraries. Cheers, -- Pierre

[PHP-DEV] Re: Bug 42682 (stream_select() indicates bad number of readable descriptors)

2008-04-16 Thread Jani Taskinen
On Wed, 2008-04-16 at 15:42 +0200, Hans Rakers wrote: Anyway, i have good news. I compiled the 5.2.6RC5 snapshot from qa.php.net by hand with the exact same configure rule as the ebuild, and with gcc optimizations at -02, and the issue seems solved. Testcase from the bugreport returns the

Re: [PHP-DEV] intl naming

2008-04-16 Thread Stanislav Malyshev
Hi! Forgot to attach a second for config.w32, to nicely detect the required libraries. Why do you think it is necessary to check each lib individually? Those libs are distributed together, and unless you mess with your ICU install, they should be always found together, so if icuuc.lib is

[PHP-DEV] Re: [ZEND-ENGINE-CVS] cvs: ZendEngine2(PHP_5_3) / zend.c zend_execute_API.c zend_vm_def.h zend_vm_execute.h php-src NEWS

2008-04-16 Thread Derick Rethans
On Fri, 11 Apr 2008, Dmitry Stogov wrote: Sorry, but I think mainly about PHP performance, and of course I didn't know that you trace return_values it in xdebug. After the patch, in case if return value is not used we set EG(return_value_ptr_ptr) to NULL before call to nested execute(). I

Re: [PHP-DEV] intl naming

2008-04-16 Thread Stanislav Malyshev
Please find a patch as attachment, fixing some bad #ifdef. This test should be in the main intl header, imo. Applied, thanks. -- Stanislav Malyshev, Zend Software Architect [EMAIL PROTECTED] http://www.zend.com/ (408)253-8829 MSN: [EMAIL PROTECTED] -- PHP Internals - PHP Runtime

Re: [PHP-DEV] intl naming

2008-04-16 Thread Elizabeth M Smith
Stanislav Malyshev wrote: Hi! Forgot to attach a second for config.w32, to nicely detect the required libraries. Why do you think it is necessary to check each lib individually? Those libs are distributed together, and unless you mess with your ICU install, they should be always found

Re: [PHP-DEV] Exceptions = Apache Crash in PHP 5.3 Snaps

2008-04-16 Thread Jeremy Privett
Jeremy Privett wrote: Jeremy Privett wrote: Hi Scott, Scott MacVicar wrote: Can you try a debug build with --enable-debug to get a more detailed backtrace. Also what is the exact configure line and which apache 2 model are you using? Worker or Pre-fork? Scott On 29 Mar 2008, at 01:12,

Re: [PHP-DEV] Exceptions = Apache Crash in PHP 5.3 Snaps

2008-04-16 Thread Scott MacVicar
Jeremy Privett wrote: Another week later and still no response. I would hope /someone/ thinks this a critical issue and needs to be resolved. Is /anyone/ looking at this at all? Thanks. The line that is crashing was last changed by Dmitry on January 24th, see

Re: [PHP-DEV] Exceptions = Apache Crash in PHP 5.3 Snaps

2008-04-16 Thread Jeremy Privett
Scott MacVicar wrote: Jeremy Privett wrote: Another week later and still no response. I would hope /someone/ thinks this a critical issue and needs to be resolved. Is /anyone/ looking at this at all? Thanks. The line that is crashing was last changed by Dmitry on January 24th, see

Re: [PHP-DEV] CVS Account Request: thierry

2008-04-16 Thread Pierre Joye
hi, On Wed, Apr 16, 2008 at 12:07 AM, Thierry FOURNIER [EMAIL PROTECTED] wrote: I want to maintain the PECL package FAM. You can see this link: http://news.php.net/php.pecl.dev/5377 I want acces to php-src/ext/fam repository. Confirmed (for pecl/fam actually). I can give him the karma as

Re: [PHP-DEV] CVS Account Request: thierry

2008-04-16 Thread Thierry
ack hi, On Wed, Apr 16, 2008 at 12:07 AM, Thierry FOURNIER [EMAIL PROTECTED] wrote: I want to maintain the PECL package FAM. You can see this link: http://news.php.net/php.pecl.dev/5377 I want acces to php-src/ext/fam repository. Confirmed (for pecl/fam actually). I can give him the

Re: [PHP-DEV] Exceptions = Apache Crash in PHP 5.3 Snaps

2008-04-16 Thread Richard Quadling
On 16/04/2008, Jeremy Privett [EMAIL PROTECTED] wrote: The problem only seems to occur in Apache. Trying to reproduce in CLI or in IIS using ISAPI results in no problems. I've tested from Apace 2.2 all the way back to Apache 1.3.39 and get the same result. I can have a friend of mine test the

[PHP-DEV] [RFC] Type hints (parameter and return value)

2008-04-16 Thread Felipe Pena
Hello again! Now with both parameter and return value type hints. For parameter type hints, i have completed the actual implementation with the leftover php types: - string (binary string and unicode) - integer (accepting numeric string too) - double (accepting numeric string too) - boolean