Advertisement
Guest User

Untitled

a guest
Mar 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. <?php
  2.  
  3. $exploded = [
  4. 'hello',
  5. 'world'
  6. ];
  7.  
  8. $arr = [
  9. [
  10. 'hello' => [
  11. 'world' => 1
  12. ]
  13. ]
  14. ];
  15.  
  16. $item = $arr[0];
  17.  
  18. // Get 1 returned without a loop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement