[PHP-DEV] PHP 4 Bug Summary Report

2007-10-01 Thread internals
PHP 4 Bug Database summary - http://bugs.php.net Num Status Summary (634 total including feature requests) ===[*Programming Data Structures]= 40496 Assigned Test bug35239.phpt still fails (works in PHP 5)

[PHP-DEV] PHP 6 Bug Summary Report

2007-10-01 Thread internals
PHP 6 Bug Database summary - http://bugs.php.net Num Status Summary (62 total including feature requests) ===[*General Issues]== 26771 Suspended register_tick_funtions crash under threaded webservers

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

2007-10-01 Thread Antony Dovgal
On 01.10.2007 07:29, Robert Thompson wrote: Help debug and fix continuing issues with respect to PHP + Solaris. In the position of debugging and fixing Solaris + PHP issues almost exclusively for my job. In particular, I would like to contribute to code fixes and configuration checks

[PHP-DEV] Re: Compiled variables and backpatching

2007-10-01 Thread Paul Biggar
Hi, Stanislav wrote me a very useful reply to my CV questions. I wonder if anyone has time to give me a quick note on backpatching, and what that is? On 9/23/07, Paul Biggar [EMAIL PROTECTED] wrote: What is backpatching? Is it related to compiled variables, or are they different concepts? Why

Re: [PHP-DEV] T_IMPORT vs. T_USE

2007-10-01 Thread Johannes Schlüter
Hi Sebastiann et al., On Sun, 2007-09-30 at 18:06 +0200, Sebastian Bergmann wrote: When we removed the namespace implementation that was scheduled for PHP 5.0 before PHP 5.0's release we kept the T_NAMESPACE and T_USE tokens for forward-compatibility. T_NAMESPACE is new, only T_USE wasn't

RE: [PHP-DEV] [patch] Late static bindings (LSB)

2007-10-01 Thread Dmitry Stogov
Hi Robin, Thank you for catching this issue. static:: make no sense in compile-time constants. I've just forbidden it there. Thanks. Dmitry. -Original Message- From: Robin Fernandes [mailto:[EMAIL PROTECTED] Sent: Friday, September 28, 2007 6:45 PM To: internals@lists.php.net

[PHP-DEV] substr/array_slice in []

2007-10-01 Thread Alexey Zakhlestin
Here http://www.php.net/~derick/meeting-notes.html#cleanup-for-vs is a phrase For both strings and arrays, the [] operator will support substr()/array_slice() functionality will it appear in php5.x (php 5.3)? -- Alexey Zakhlestin http://blog.milkfarmsoft.com/ -- PHP Internals - PHP Runtime

Re: [PHP-DEV] substr/array_slice in []

2007-10-01 Thread Ilia Alshanetsky
This was not on the table and the time of the 5.3 discussion, I for one think its a bit too much magic. On 1-Oct-07, at 7:30 AM, Alexey Zakhlestin wrote: Here http://www.php.net/~derick/meeting-notes.html#cleanup-for-vs is a phrase For both strings and arrays, the [] operator will support

Re: [PHP-DEV] substr/array_slice in []

2007-10-01 Thread Antony Dovgal
On 01.10.2007 16:32, Ilia Alshanetsky wrote: This was not on the table and the time of the 5.3 discussion, I for one think its a bit too much magic. Yeah, too Perl-ish for me. -- Wbr, Antony Dovgal -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit:

Re: [PHP-DEV] [PATCH] Getopt with longopts and windows support - part 2

2007-10-01 Thread Jani Taskinen
Patch applied to HEAD / PHP_5_3. --Jani On Mon, 2007-08-06 at 09:57 -0400, David Soria Parra wrote: Hi internals, so based on a discussion of php.pecl we thought about using the php_getopt for the PHP_FUNCTION(getopt) instead of the system provided getopt. Here is the patch for that.

Re: [PHP-DEV] substr/array_slice in []

2007-10-01 Thread Stanislav Malyshev
Alexey Zakhlestin wrote: Here http://www.php.net/~derick/meeting-notes.html#cleanup-for-vs is a phrase For both strings and arrays, the [] operator will support substr()/array_slice() functionality will it appear in php5.x (php 5.3)? I think since we do have substr/array_slice there's no need

Re: [PHP-DEV] Re: Compiled variables and backpatching

2007-10-01 Thread Stanislav Malyshev
Stanislav wrote me a very useful reply to my CV questions. I wonder if anyone has time to give me a quick note on backpatching, and what that is? I think backpatching refers to updating past opcodes (i.e. opcodes for code that was already parsed) when they need something that would be known

Re: [PHP-DEV] substr/array_slice in []

2007-10-01 Thread Andrei Zmievski
It's on my TODO list. -Andrei Alexey Zakhlestin wrote: Here http://www.php.net/~derick/meeting-notes.html#cleanup-for-vs is a phrase For both strings and arrays, the [] operator will support substr()/array_slice() functionality will it appear in php5.x (php 5.3)? -- PHP Internals - PHP

RE: [PHP-DEV] T_IMPORT vs. T_USE

2007-10-01 Thread Andi Gutmans
Hi Johannes, Our preference would be to stick to import because I think the perception many will have of use is that it also includes files (just based on some other languages). That said I agree that compatibility would be an issue here. In fact it's even somewhat of an issue with namespace

Re: [PHP-DEV] substr/array_slice in []

2007-10-01 Thread Martin Alterisio
Sorry to bother, I have a few questions on this matter. How will this impact on the SPL ArrayAccess and related interfaces and objects? Will there be an interface to this functionality? If so, how will ranges be passed through to this interface? Will this be consistent with substr() and

Re: [PHP-DEV] substr/array_slice in []

2007-10-01 Thread Stanislav Malyshev
Sorry to bother, I have a few questions on this matter. How will this impact on the SPL ArrayAccess and related interfaces and objects? That's the problem with such syntax - one would expect it works with ArrayAccess and it starts to be complicated... -- Stanislav Malyshev, Zend Software

Re: [PHP-DEV] T_IMPORT vs. T_USE

2007-10-01 Thread Gregory Beaver
Andi Gutmans wrote: Hi Johannes, Our preference would be to stick to import because I think the perception many will have of use is that it also includes files (just based on some other languages). That said I agree that compatibility would be an issue here. In fact it's even somewhat of an

Re: [PHP-DEV] T_IMPORT vs. T_USE

2007-10-01 Thread Stanislav Malyshev
This would be pretty easy, in a hackish way, by adding a whole bunch of duplicate rules T_FUNCTION T_STRING, T_FUNCTION T_IMPORT, T_FUNCTION T_NAMESPACE and so on. A more robust way would be to move to lemon/re2c but I'm not volunteering to do this (yet?) probably better something like

Re: [PHP-DEV] T_IMPORT vs. T_USE

2007-10-01 Thread Stefan Walk
Andi Gutmans schrieb: Our preference would be to stick to import because I think the perception many will have of use is that it also includes files (just based on some other languages). That said I agree that compatibility would be an issue here. In fact it's even somewhat of an issue with

[PHP-DEV] [PATCH] Proposal for fixing bug #40501

2007-10-01 Thread David Soria Parra
Hi internals, once again a proposal for a bugfix. This time concerning http://bugs.php.net/bug.php?id=40501. As the standard escape character is \\ , but the RFC says , I added a optional escape character to the function call as a last parameter. Furthermore, when the escape character is the

[PHP-DEV] Re: RE : [PHP-DEV] Re: RE : [PATCH] zend-multibyte unicode detection vs. __halt_compiler()

2007-10-01 Thread Rui Hirokawa
Changing 'detect_unicode' disabled as default is a possible solution. But, it might cause some backward incompatibility issues. If no one gives any objection within a coupled of days, I will commit the change ('detect_unicode' will be disabled by default). Rui On Thu, 27 Sep 2007 18:37:57

[PHP-DEV] [PATCH] bug 42818

2007-10-01 Thread David Soria Parra
Hi internals, another small patch. This time concerning http://bugs.php.net/bug.php?id=42818. As I'm not a ZendEngine expert I'm not sure if this is the right place and the right way to fix the bug, but at least for me this small fix works fine. Maybe somebody who is really into depth with the

[PHP-DEV] Re: Solaris and getcwd()

2007-10-01 Thread Rob Thompson
BTW: Here is the bug that I am referring to: http://bugs.php.net/bug.php?id=41822 correction: getcwd() is not an stdio function ;) Rob Thompson wrote: Hi everyone, I just subscribed to this list in hopes of working out some PHP bugs that have to do with Solaris. I've been trying to find

[PHP-DEV] link to exceptions in autoload thread?

2007-10-01 Thread Gregory Beaver
Hi all, Could someone point me to the message(s) explaining why the executor is unstable when an exception is thrown in __autoload()? Thanks, Greg -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php