Guest User

Untitled

a guest
May 26th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2.  
  3. $arr = array(
  4. "foo" => array(
  5. "name" => "fred",
  6. "age" => "15"
  7. ),
  8. "bar" => array(
  9. "name" => "george",
  10. "age" => "20"
  11. )
  12. );
  13.  
  14. $arr["foo"]["name"]; #=> "fred"
  15. $arr["bar"]["age"]; #=> "20"
  16.  
  17.  
  18. ?>
Add Comment
Please, Sign In to add comment