変数値の交換


 一時変数を使う方法と使わない方法があります。
# 一時変数を使う
$tmp = $foo;
$foo = $bar;
$bar = $tmp;

# 一時変数を使わない
($foo, $bar) = ($bar, $foo);

関連項目

なし