Skip to content

Instantly share code, notes, and snippets.

@tomschlick
Created January 23, 2011 11:32
Show Gist options
  • Select an option

  • Save tomschlick/792006 to your computer and use it in GitHub Desktop.

Select an option

Save tomschlick/792006 to your computer and use it in GitHub Desktop.
<?php
// Input array
$user = array(
'name' => 'Bob Smith',
'age' => 43,
'address' => array(
'city' => 'Houston',
'state' => 'TX',
),
);
// Grab the City or use the Default of 'Unknown City'
$city = array_element($user, 'address.city', 'Unkown City');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment