Re: [PHP-DEV] 'Sanity' tally to date

2008-10-16 Thread Janusz Lewandowski
On 16 October 2008, at 16:14:34, Steph Fox wrote: > Janusz Lewandowski #4 Yes My alternative choice for A is #3. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] my last attempt at sanity with namespaces

2008-10-15 Thread Janusz Lewandowski
7;s much better than current resolution rules. Janusz Lewandowski -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] alpha3

2008-09-29 Thread Janusz Lewandowski
Monday 29 September 2008 18:35:45 Stefan Walk napisaƂ(a): > On Monday 29 September 2008 18:05:48 Arvids Godjuks wrote: > > So as prevoius speaker suggested, and I personaly got to conclusion in > > other thread that ":" is ideal. Short, isn't taken. > > $a = $b?A:B:C:D; Will _you_ write such code?

Re: [PHP-DEV] solving the namespace conflict issues between function/static method class constant/ns constant

2008-09-22 Thread Janusz Lewandowski
g with objects, not for doing such odd things with namespaces. If you will do this change in PHP, I will never use namespaces in PHP, and I will start to look for a new language. Probably not only me. Janusz Lewandowski -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit

Re: [PHP-DEV] PHP 4.4.9

2008-07-07 Thread Janusz Lewandowski
2008/7/7 Guilherme Blanco <[EMAIL PROTECTED]>: > The end of life cycle of PHP4 is 08-08-08, so people expect one last > release in this day as the last release. > Some of you are telling that release something now contradicts your > master plan, but you missed something. > > If you don't release so

Re: [PHP-DEV] PHP 4.4.9

2008-07-07 Thread Janusz Lewandowski
PHP 4 end of life announcement: > After 2007-12-31 there will be no more releases of PHP 4.4. > We will continue to make critical security fixes available > on a case-by-case basis until 2008-08-08. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/

Re: [PHP-DEV] LSB forward_static_call()

2008-06-24 Thread Janusz Lewandowski
nA(); } static function mB() { self::nB(); } } class B extends A { function mA() { parent::mA(); } static function mB() { parent::mB(); } function nA()

Re: [PHP-DEV] LSB forward_static_call()

2008-06-24 Thread Janusz Lewandowski
mA(); B::mB(); Currently, this will output BA. You can't tell me, that it is consistent. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php