PHP- associative array (structure) -
could explain how structure of array like?
$result['results'][0]['geometry']['location']
it
$result = array( 'results'=> array( array( 'geometry' => array( 'location' => 'some value' ) ) ) )
Comments
Post a Comment