Most languages make it easy to take an array like [1, 2, 3]
and assign those values to variables a
, b
, and c
with a single command.
For example, in Perl you can do
($a, $b, $c) = (1, 2, 3);
What's the corresponding trick in PHP?
[Thanks so much for the lightning fast answer! I know this is a trivial question but all the obvious google queries didn't turn up the answer so this is my attempt to fix that.]