kod:<pre style="font-size:x-small; font-family: monospace;"><?php
$info = array(´coffee´, ´brown´, ´caffeine´);
// Listing all the variables
list($drink, $color, $power) = $info;
print "$drink is $color and $power makes it special.
";
// Listing some of them
list($drink, , $power) = $info;
print "$drink has $power.
";
// Or let´s skip to only the third one
list( , , $power) = $info;
print "I need $power!
";
?></pre>