-
-
Save danberenholtz/2985116 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $data = array( | |
| 'name' => 'Dan B.', | |
| 'age' => 24, | |
| 'picture' => image('dan.png'), | |
| 'networks' => 'NYU', | |
| 'hometown' => 'Fresh Meadows, NY', | |
| 'current_city' => 'New York', | |
| 'college' => 'Cornell', | |
| 'interested_in' => 'women', | |
| 'relationship_status' => 'in a relationship', | |
| 'work' => 'homeless', | |
| 'mutual_friends' => array( | |
| array( | |
| 'name' => 'Etay L.', | |
| 'thumb' => 'etay.jpg', | |
| ), | |
| array( | |
| 'name' => 'Venkat D.', | |
| 'thumb' => 'venkat.jpg', | |
| ), | |
| array( | |
| 'name' => 'Jackie P.', | |
| 'thumb' => 'jackie.jpg', | |
| ), | |
| array( | |
| 'name' => 'Hannah S.', | |
| 'thumb' => 'hannah.jpg', | |
| ), | |
| array( | |
| 'name' => 'Rachel A.', | |
| 'thumb' => 'rachel.png', | |
| ), | |
| ), | |
| 'music' => array( | |
| array( | |
| 'name' => 'brittany spears', | |
| 'thumb' => image('spears.jpg'), | |
| ), | |
| array( | |
| 'name' => 'u2', | |
| 'thumb' => image('u2.jpg'), | |
| ), | |
| array( | |
| 'name' => 'oasis', | |
| 'thumb' => image('oasis.jpg'), | |
| ), | |
| array( | |
| 'name' => 'red hot chilli peppers', | |
| 'thumb' => image('rhcp.jpg'), | |
| ), | |
| array( | |
| 'name' => 'coldplay', | |
| 'thumb' => image('coldplay.jpg'), | |
| ), | |
| ), | |
| 'interests' => array( | |
| array( | |
| 'name' => 'skiing', | |
| 'thumb' => image('skiing.jpg'), | |
| ), | |
| array( | |
| 'name' => 'basketball', | |
| 'thumb' => image('basketball.jpg'), | |
| ), | |
| array( | |
| 'name' => 'dogs', | |
| 'thumb' => image('dogs.jpg'), | |
| ), | |
| array( | |
| 'name' => 'traveling', | |
| 'thumb' => image('traveling.jpg'), | |
| ), | |
| array( | |
| 'name' => 'technology', | |
| 'thumb' => image('technology.jpg'), | |
| ) | |
| ), | |
| 'recent_places' => array( | |
| array( | |
| 'name' => 'joshua tree', | |
| 'thumb' => image('joshua_tree.jpg'), | |
| ), | |
| array( | |
| 'name' => 'mercury bar', | |
| 'thumb' => image('mercury_bar.jpg'), | |
| ), | |
| array( | |
| 'name' => '49grove', | |
| 'thumb' => image('49grove.jpg'), | |
| ), | |
| ), | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment