It is not a big feature, but it is handy shorthand for list(). So it can be quickly seen in the following example:
<?php
$records = [
[7, 'Haafiz'],
[8, 'Ali'],
];
// list() style
list($firstId, $firstName) = $records[0];
// [] in PHP7.1 is having same result
[$firstId, $firstName] = $records[0];