Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Say for instance I have ...

$var1 = ABC
$var2 = 123

and under certain conditions I want to swap the two around like so...

$var1 = 123
$var2 = ABC

Is there a PHP function for doing this rather than having to create a 3rd variable to hold one of the values then redefining each, like so...

$var3 = $var1
$var1 = $var2
$var2 = $var3

For such a simple task its probably quicker using a 3rd variable anyway and I could always create my own function if I really really wanted to. Just wondered if something like that existed?

share|improve this question
You can use xor too, like... b = a xor b, a = a xor b, b = a xor b should do the trick... Dunno if theres a function, I'm not good with PHP. – alternative Aug 22 '10 at 14:07

5 Answers

up vote 17 down vote accepted

There's no function I know of, but there is a one-liner courtesy of Pete Graham:

list($a,$b) = array($b,$a);

not sure whether I like this from a maintenance perspective, though, as it's not really intuitive to understand.

Also, as @Paul Dixon points out, it is not very efficient, and is costlier than using a temporary variable. Possibly of note in a very big loop.

However, a situation where this is necessary smells a bit wrong to me, anyway. If you want to discuss it: What do you need this for?

share|improve this answer
+1 that's a nice trick. – Mark Elliot Aug 22 '10 at 14:00
lol, beat me to it! :p – Thomas Clayson Aug 22 '10 at 14:00
1  
+1 - found the same, and agree, not sure I like it either - using a temp variable is considerably better - as is writing your own swap method if you find yourself doing this often. – Will A Aug 22 '10 at 14:01
+1, Beat me to it as well :) I like the idea in principle, but unfortunately the PHP syntax just leaves a bad taste... – Justin Ethier Aug 22 '10 at 14:03
8  
as this is the accepted answer for a question that might educate others, it's worth pointing out just how inefficient this is. You're asking PHP to create an array, only to immediately discard it. I benchmarked this approach against using a temporary variable, and found that using a temp variable is over 7 times faster. I would also argue it makes the intent clearer too, as it's a common idiom! – Paul Dixon Aug 22 '10 at 14:55
show 6 more comments

Yes, try this:

// Test variables
$a = "content a";
$b = "content b";

// Swap $a and $b
list($a, $b) = array($b, $a);

This reminds me of python, where syntax like this is perfectly valid:

a, b = b, a

It's a shame you can't just do the above in PHP...

share|improve this answer

It is also possible to use the old XOR trick ( However it works only correctly for integers, and it doesn't make code easier to read.. )

$a ^= $b ^= $a ^= $b;
share|improve this answer
lol, nice but how hard for my brain – Ninsuo Dec 9 '12 at 19:52
list($var1,$var2) = array($var2,$var1);
share|improve this answer

If both variables are integers you can use mathematical approach:

$a = 7; $b = 10; $a = $a + $b; $b = $a - $b; $a = $a - $b;

Good blog post - http://booleandreams.wordpress.com/2008/07/30/how-to-swap-values-of-two-variables-without-using-a-third-variable/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.