PHP Pythonic?

# python swap!
(a, b) = (b, a)

// php swap!
list
($a, $b) = array($b, $a);