Skip to content

Instantly share code, notes, and snippets.

@stevenwadejr
Created May 15, 2019 15: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 stevenwadejr/004c785b6680b043ac9df3634d7554b0 to your computer and use it in GitHub Desktop.
Save stevenwadejr/004c785b6680b043ac9df3634d7554b0 to your computer and use it in GitHub Desktop.
WTF PHP Array Initialization
<?php
$arr_1 = ['foo'];
$arr_2[] = 'foo';
var_dump(
$arr_1,
$arr_2
);
// array(1) {
// [0]=>
// string(3) "foo"
// }
// array(1) {
// [0]=>
// string(3) "foo"
// }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment