[PHP-DEV] Are you Good Enough to make the Cut on KICKradio? Should the labels care?

2004-10-17 Thread Silverfox
Greetings, I am Rob from Artist development at KICKradio.com Please read this message very carefully...It concerns your future in the music industry... Your name has been forwarded to me as a musician who might possibly qualify for a future broadcast of our radio station. Are you good enough to

[PHP-DEV] Keywords for class names

2004-10-17 Thread Pfenniger Jonas
Hi php developper, I want to know why you can't use php keywords as class names. It seems to me it's not a necessary constraint, but I may be wrong as I never looked at php's sourcecode. Thanks for you great work :) Cheers, zimba -- PHP Internals - PHP Runtime Development Mailing List To unsubscr

Re: [PHP-DEV] Keywords for class names

2004-10-17 Thread Derick Rethans
Hello, On Sun, 17 Oct 2004, Pfenniger Jonas wrote: > I want to know why you can't use php keywords as class names. > It seems to me it's not a necessary constraint, but I may be wrong as I > never looked at php's sourcecode. It is necessary. Derick -- Derick Rethans http://derickrethans.nl |

Re: [PHP-DEV] Keywords for class names

2004-10-17 Thread Christian Schneider
Derick Rethans wrote: It is necessary. Or in slightly more words: That's the way the whole syntax and parser are built. You'll have to accept it as a fact ;-) - Chris -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] array(...)[]

2004-10-17 Thread Klaus Reimer
Hi, I've just seen that finally it's possible to do "$object->getOtherObject()->doSomething()" with PHP5 which was not possible in PHP4. But I wonder why something like this still does not work: $object->returnArray()[$index] returnArray()[$index] array(1,2,3,4)[$index] It would be really

Re: [PHP-DEV] Keywords for class names

2004-10-17 Thread Pfenniger Jonas
Christian Schneider wrote: Derick Rethans wrote: It is necessary. Or in slightly more words: That's the way the whole syntax and parser are built. You'll have to accept it as a fact ;-) - Chris Thanks for your answeres. I expected something like them :p Cheers, zimba -- PHP Internals - PHP Runti

Re: [PHP-DEV] array(...)[]

2004-10-17 Thread Markus Fischer
Klaus Reimer wrote: I've just seen that finally it's possible to do "$object->getOtherObject()->doSomething()" with PHP5 which was not possible in PHP4. But I wonder why something like this still does not work: $object->returnArray()[$index] returnArray()[$index] array(1,2,3,4)[$index] It

RE: [PHP-DEV] Type hints with null default values

2004-10-17 Thread Cristiano Duarte
Robert Silva wrote: > Re-reading the previous discussion, it seems like the functionality that > people wanted was to have an optional typed argument. > > In converting the .NET Framework library over to PHP, there are many > instances where having optional typed params would have been handy. The

RE: [PHP-DEV] Type hints with null default values

2004-10-17 Thread Robert Silva
Good points... Heres another idea which I also implemented and I think others may like it as well: Explicitly deny anything except for: Method(ClassType $a) And Method(ClassType $a=false); Then inside the function itself: if ($a) $a->DoIt(); Inside the engine, it explicitly checks for the fal

Re: [PHP-DEV] why to call php_output_activate(TSRMLS_C) from php_module_startup(reposting first time)(bug #30397)

2004-10-17 Thread Kamesh Jayachandran
Can someone respoond to this. With regards Kamesh Jayachandran On Thu, 07 Oct 2004 23:10:24 -0700, "Kamesh Jayachandran" <[EMAIL PROTECTED]> said: > Hi All, > I could see php_output_activate(TSRMLS_C) getting called from > php_module_startup immedeately after php_output_startup. > > Why is this n