- var_dump: documentation ( source)
<?php
list($first, $second, $third) = ['first value', 'second value', 'third value'];
//Same functionality as above provided for this:
[$first, $second, $third] = ['first value', 'second value', 'third value'];
var_dump($first);