Re: [PHP] Assigning one var to multiple vars

2004-09-09 Thread Curt Zirzow
* Thus wrote Jason Davidson: > $var2 = $var3 = $var5 = "all the same"; or $var2 = $var3 = $var5 = "all the same"; Curt -- The above comments may offend you. flame at will. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Assigning one var to multiple vars

2004-09-09 Thread Matthew Sims
> How about: > > $var1 = $var2 = $var3 = 5; > echo $var1 . '' . $var2 . '' . $var3 . ''; > ?> > > Regards, > > Justin > I had something stuck in my head between what Python does and PHP's list function. Not sure why I couldn't figure this one out. Thanks all. -- --Matthew Sims --

RE: [PHP] Assigning one var to multiple vars

2004-09-09 Thread Justin Palmer
How about: ' . $var2 . '' . $var3 . ''; ?> Regards, Justin -Original Message- From: Matthew Sims [mailto:[EMAIL PROTECTED] Sent: Thursday, September 09, 2004 1:39 PM To: [EMAIL PROTECTED] Subject: [PHP] Assigning one var to multiple vars Just mostly curious but is there a way to as

Re: [PHP] Assigning one var to multiple vars

2004-09-09 Thread Jason Wong
On Friday 10 September 2004 04:38, Matthew Sims wrote: > Just mostly curious but is there a way to assign one variable to multiple > variables in one single line? > > Rather than do this: > > $var2 = $var1; > $var3 = $var1; > > Is there a method to perform a: > > ($var2,$var3) = $var1; manual > Ex

Re: [PHP] Assigning one var to multiple vars

2004-09-09 Thread Gerard Samuel
Matthew Sims wrote: Just mostly curious but is there a way to assign one variable to multiple variables in one single line? Rather than do this: $var2 = $var1; $var3 = $var1; Is there a method to perform a: ($var2,$var3) = $var1; $var1 = $var2 = $var3 = 'some_value'; -- PHP General Mailing List (ht

Re: [PHP] Assigning one var to multiple vars

2004-09-09 Thread Jason Davidson
$var2 = $var3 = $var5 = "all the same"; Jason "Matthew Sims" <[EMAIL PROTECTED]> wrote: > > > Just mostly curious but is there a way to assign one variable to multiple > variables in one single line? > > Rather than do this: > > $var2 = $var1; > $var3 = $var1; > > Is there a method to perfo

Re: [PHP] Assigning one var to multiple vars

2004-09-09 Thread John Holmes
From: "Matthew Sims" <[EMAIL PROTECTED]> Just mostly curious but is there a way to assign one variable to multiple variables in one single line? $a = $b = $c = $d = 1; ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php