Skip to content

Instantly share code, notes, and snippets.

@kuzuha
Created December 14, 2015 05:34
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 kuzuha/589d09893bff444721fa to your computer and use it in GitHub Desktop.
Save kuzuha/589d09893bff444721fa to your computer and use it in GitHub Desktop.
php -r '$a=[]; $a[]=2; $a[-1]=1; var_dump($a); array_shift($a); var_dump($a);'
array(2) {
[0]=>
int(2)
[-1]=>
int(1)
}
array(1) {
[0]=>
int(1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment