Re: [PHP-DEV] T_PAAMAYIM_NEKUDOTAYIM

2008-08-31 Thread Jochem Maas
redirecting to generals mailing list ... Diogo Neves schreef: php -r 'class B { private static function a() {} public function __callStatic($method, $parms) { echo $method, "\n"; } } $a = new B; $a::a();' Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in Command line code on line

[PHP-DEV] Re: namespace RFC

2008-08-31 Thread Gregory Beaver
Lukas Kahwe Smith wrote: > Hello all, > > All the recent discussions about namespaces, have left many of us > wondering if our implementation is rock solid or not. However the > discussions were not really well organized. This is why I am thankful > that Marcus and Felipe have spend the better par

Re: [PHP-DEV] Re: Closing mysql_pconnects.

2008-08-31 Thread Robert Cummings
On Sun, 2008-08-31 at 17:37 +0100, Richard Quadling wrote: > > What I'm trying to determine is how persistent connections are ignored > when mysql_close() is called against a connection which was opened via > mysql_pconnect(). > > I've looked at the source and can see that mysql_connect and > mysq

Re: [PHP-DEV] Re: Closing mysql_pconnects.

2008-08-31 Thread Richard Quadling
2008/8/30 Ronald Chmara <[EMAIL PROTECTED]>: > > On Aug 29, 2008, at 7:58 PM, Robert Cummings wrote: > >> On Sat, 2008-08-30 at 04:40 +0200, Lupus Michaelis wrote: >>> >>> Richard Quadling a écrit : Can someone point me to where or how PHP DOESN'T close persistent connections >>> >>

Re: [PHP-DEV] casting static property

2008-08-31 Thread Alexey Zakhlestin
attachment didn't pass. can you put in at some web-server? On Sun, Aug 31, 2008 at 4:54 PM, Diogo Neves <[EMAIL PROTECTED]> wrote: > Hi all, > > Why a static var don't cast as a dynamic one? > See file for more info... > > -- > Thanks for your attention, > > Diogo Neves > Web Developer @ SAPO.pt b

[PHP-DEV] namespace RFC

2008-08-31 Thread Lukas Kahwe Smith
Hello all, All the recent discussions about namespaces, have left many of us wondering if our implementation is rock solid or not. However the discussions were not really well organized. This is why I am thankful that Marcus and Felipe have spend the better part of this Sunday to write an

[PHP-DEV] casting static property

2008-08-31 Thread Diogo Neves
Hi all, Why a static var don't cast as a dynamic one? See file for more info... -- Thanks for your attention, Diogo Neves Web Developer @ SAPO.pt by PrimeIT.pt -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] __call() magic method

2008-08-31 Thread Diogo Neves
On Sun, Aug 31, 2008 at 11:03 AM, Marcus Boerger <[EMAIL PROTECTED]> wrote: > Hello Diogo, > > Sunday, August 31, 2008, 12:50:15 AM, you wrote: > >> Exactly... > >> Is that normal workings or more like a bugie one? > >> On Sat, Aug 30, 2008 at 10:02 PM, Rasmus Lerdorf <[EMAIL PROTECTED]> wrote: >>>

Re: [PHP-DEV] __call() magic method

2008-08-31 Thread Marcus Boerger
Hello Diogo, Sunday, August 31, 2008, 12:50:15 AM, you wrote: > Exactly... > Is that normal workings or more like a bugie one? > On Sat, Aug 30, 2008 at 10:02 PM, Rasmus Lerdorf <[EMAIL PROTECTED]> wrote: >> Cristian Rodríguez wrote: >>> >>> Diogo Neves escribió: Hi all, I'm

Re: [PHP-DEV] Re: [PATCH] Constant expr folding (again), and other things

2008-08-31 Thread Matt Wilmas
Hi Stas, Dmitry, I forgot to reply to Stas' message yesterday, sorry... But, there is no change in behavior here either as far as I know. For the code Stas quoted, with static vars (if that's what was being referred to), there's definitely not been a change (though its parser code was tweaked a

Re: [PHP-DEV] Re: [PATCH] Constant expr folding (again), and other things

2008-08-31 Thread Dmitry Stogov
Hi Stas, We discussed this patch with Matt, and I allowed this change. So it probably my fault (I missed run-time locale change possibility). I don't think it is a really big issue, but it really may change behavior of some scripts. I think we should revert this patch, before we get complete sol