Skip to content

Instantly share code, notes, and snippets.

@OMGZui
Last active June 27, 2022 08:00
Show Gist options
  • Save OMGZui/9159c1c39f533dca18a3ff694847e0d2 to your computer and use it in GitHub Desktop.
Save OMGZui/9159c1c39f533dca18a3ff694847e0d2 to your computer and use it in GitHub Desktop.
// A
$data = [];
$data['a'] = 1;
$data['b'] = 1;
// B
$data = [
'a' => 1,
'b' => 1,
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment