code:function swap($arr,$key1,$key2) { $foo = $arr[$key1]; $arr[$key1] = $arr[$key2]; $arr[$key2] = $foo; return $arr; }