Get the $array['user']['name'] value from the array
$name = ArrayX::get($array, 'user.name');
Return a default from if the specified item doesn't exist
$name = ArrayX::get($array, 'user.name', 'Taylor');
Get the $array['user']['name'] value from the array
$name = ArrayX::get($array, 'user.name');
Return a default from if the specified item doesn't exist
$name = ArrayX::get($array, 'user.name', 'Taylor');