Aug 15 2007
PHP Swap (Simple Swapping)
- 3 Comment
![]()
PHP Simple Swap >>
Hello programmers,
You know list function in php and array function. Just
type like below for swapping two variables $a and $b.
| list($b,$a) = array($a,$b); |
The above code is equivalent to:
$temp = $a;
$a = $b ;
$b= $temp;
Here we shorten the three line of code into a single line.
3 Comments on this post
Trackbacks
-
ruX said:
Good idea

AFIK, this construction needs more memory.August 27th, 2008 at 12:55 am -
miah said:
$a = ‘bar’;
$b = ‘foo’;$a = $a ^ $b;
$b = $a ^ $b;
$a = $a ^ $b;echo $a . $b;
// its faster and needs less memory ^^
February 23rd, 2009 at 10:00 pm -
Blog SEO said:
Nice trick, thanks
miah, I like your trcik too
Thanks guys !
Tiger
May 14th, 2009 at 7:54 pm
