[PHP-DEV] __HALT_COMPILER(); patch to be MFB

2007-05-27 Thread Gregory Beaver
Hi, The fix recently incorporated in PHP 5.2.2 for __HALT_COMPILER(); needs to be MFB. Until today, I didn't have the time to get it working, but attached is the patch. It is also available at http://chiaraquartet.net/halt_compiler_php6.patch.txt Greg P.S. don't prepend www. or you'll get redi

Re: [PHP-DEV] pecl.php.net down???

2007-05-27 Thread Rasmus Lerdorf
pear/pecl are on the same server. The pear guys are on top of it. Wez Furlong wrote: > Thanks for the heads-up. > FYI, this email should have been directed to [EMAIL PROTECTED] > > --Wez. > > On 5/27/07, David Hall <[EMAIL PROTECTED]> wrote: >> pecl seems to be down. I would love you if you f

Re: [PHP-DEV] pecl.php.net down???

2007-05-27 Thread Wez Furlong
Thanks for the heads-up. FYI, this email should have been directed to [EMAIL PROTECTED] --Wez. On 5/27/07, David Hall <[EMAIL PROTECTED]> wrote: pecl seems to be down. I would love you if you fixed it. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.

[PHP-DEV] pecl.php.net down???

2007-05-27 Thread David Hall
pecl seems to be down. I would love you if you fixed it. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] $var::$static

2007-05-27 Thread Etienne Kneuss
Hi, Bart de Boer wrote: $class = 'Child'; $obj = new $class(); // This works. echo $class::$var; // This doesn't. Should map to Child::$var This feature request was already brought up a couple of weeks/months ago, please consider: http://news.php.net/php.internals/29067 Regards -- Etien

Re: [PHP-DEV] $var::$static

2007-05-27 Thread Daniel Convissor
On Sun, May 27, 2007 at 11:35:04AM -0400, Daniel Convissor wrote: > On Sat, May 26, 2007 at 01:50:04PM +0200, Bart de Boer wrote: > > > > class Base { > > public static $var = 'hello'; > > > > public function someFunc() { > > echo self::$var; // Currently maps to Base::$var >

Re: [PHP-DEV] $var::$static

2007-05-27 Thread Daniel Convissor
On Sat, May 26, 2007 at 01:50:04PM +0200, Bart de Boer wrote: > > class Base { > public static $var = 'hello'; > > public function someFunc() { > echo self::$var; // Currently maps to Base::$var > echo $this::$var; // Should map to Child::$var Here, and th

Re: [PHP-DEV] Re: Fwd: [PHP-CVS] cvs: php-src(PHP_5_2) /ext/standard basic_functions.c

2007-05-27 Thread Antony Dovgal
On 25.05.2007 15:11, Derick Rethans wrote: On Thu, 24 May 2007, Hannes Magnusson wrote: This bug was never fixed in 4_4 (the original news entry said it was).. Shouldn't it be merged to 4_4? I thought Antony merged it very recently actually. Done. -- Wbr, Antony Dovgal -- PHP Internals

Re: [PHP-DEV] late static binding (& $var::$static)

2007-05-27 Thread Bart de Boer
This subject has some correlation with my previous suggestion. Except I totally forgot about the "late static binding" discussion. I'd like to give another real life example. This is an oversimplified version of what I'd currently like to do (without a bunch of workarounds): 'Address');

Re: [PHP-DEV] Re: Fwd: [PHP-CVS] cvs: php-src(PHP_5_2) /ext/standard basic_functions.c

2007-05-27 Thread Antony Dovgal
On 25.05.2007 15:11, Derick Rethans wrote: On Thu, 24 May 2007, Hannes Magnusson wrote: This bug was never fixed in 4_4 (the original news entry said it was).. Shouldn't it be merged to 4_4? I thought Antony merged it very recently actually. I will, I will. -- Wbr, Antony Dovgal -- PHP