<?php $a = 10; $b = 20; echo "Before swapping: a = $a, b = $b. "; [$a, $b] = [$b, $a]; echo "After swapping: a = $a, b = $b. "; ?>