Skip to content

Instantly share code, notes, and snippets.

@teresko
Created September 24, 2014 07:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save teresko/31d1c3b0d606d2f9830c to your computer and use it in GitHub Desktop.
Save teresko/31d1c3b0d606d2f9830c to your computer and use it in GitHub Desktop.
<?php
[foo => bar]
[foo =>
[
bar => null
]
]
==========================
[foo => [bar, buz]]
[foo =>
[
bar => null,
buz => null
]
]
==========================
[foo => [bar => buz]]
[foo =>
[
bar => [
buz => null
]
]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment