September 2017
Intermediate to advanced
244 pages
6h 44m
English
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() stylelist($firstId, $firstName) = $records[0];// [] in PHP7.1 is having same result[$firstId, $firstName] = $records[0];
Read now
Unlock full access