Re: [PHP] Assignment operator proposal

2002-03-21 Thread Bogdan Stancescu
Egon Schmid wrote: From: Enrico Weigelt [EMAIL PROTECTED] Please note, there are many German PHP developers. Most of them are not so stupid ... I must say I fail to understand both the meaning and the reason for the harsness in your reply. Bogdan -- PHP General Mailing List

Re: [PHP] Assignment operator proposal

2002-03-21 Thread Bogdan Stancescu
[EMAIL PROTECTED] wrote: I think this is a nice idea for php8 (or some release, I´ll never have to use) The main thing in using php is that it is close to c. As there are so many new functions, some of them are not really necessary, I would not prefer shortcuts like these. Who should

Re: [PHP] Assignment operator proposal

2002-03-21 Thread Rasmus Lerdorf
Please note, there are many German PHP developers. Most of them are not so stupid ... Oh, I don't know about that. I have met a bunch of them... ;) -Rasmus -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Assignment operator proposal

2002-03-20 Thread Bogdan Stancescu
Hi all! I'd like to hear from a single one of you who isn't tired of code similar to ? if (!$whatever) { $whatever=something; } ? or else ? if ($whatever) { $somethingelse=$whatever; } ? How about a new asignment operator which would shut up all those Python enthusiasts -

Re: [PHP] Assignment operator proposal

2002-03-20 Thread Enrico Weigelt
On Thu, Mar 21, 2002 at 12:36:26AM +0200, Bogdan Stancescu wrote: Hi all! I'd like to hear from a single one of you who isn't tired of code similar to i'm solving this with some little knowledge of shortcuts evaluation ... ? if (!$whatever) { $whatever=something; } ?

RE: [PHP] Assignment operator proposal

2002-03-20 Thread Kevin Stone
, 2002 3:36 PM To: [EMAIL PROTECTED] Subject: [PHP] Assignment operator proposal Hi all! I'd like to hear from a single one of you who isn't tired of code similar to ? if (!$whatever) { $whatever=something; } ? or else ? if ($whatever) { $somethingelse=$whatever; } ? How about

Re: [PHP] Assignment operator proposal

2002-03-20 Thread heinisch
At 21.03.2002 00:36, you wrote: Hi all! I'd like to hear from a single one of you who isn't tired of code similar to ? if (!$whatever) { $whatever=something; } ? or else ? if ($whatever) { $somethingelse=$whatever; } ? How about a new asignment operator which would shut up

Re: [PHP] Assignment operator proposal

2002-03-20 Thread Egon Schmid
From: Enrico Weigelt [EMAIL PROTECTED] On Thu, Mar 21, 2002 at 12:36:26AM +0200, Bogdan Stancescu wrote: Hi all! I'd like to hear from a single one of you who isn't tired of code similar to i'm solving this with some little knowledge of shortcuts evaluation ... ? if (!$whatever)