<?php function swap($x, $y) { return [$y, $x]; } list($a, $b) = swap("hello", "world"); var_dump($a, $b);
You have javascript disabled. You will not be able to edit any code.