Skip to content

Instantly share code, notes, and snippets.

@suin
Created September 6, 2011 05:15
Show Gist options
  • Save suin/1196652 to your computer and use it in GitHub Desktop.
Save suin/1196652 to your computer and use it in GitHub Desktop.
[PHP5.4] Arrayの短い版どう書く?
<?php
array(
'aaaa' => 'aaaa',
'bbbb' => 'bbbb',
);
// はいいけど
[
'aaaa' => 'aaaa',
'bbbb' => 'bbbb',
];
// はなんかカコワルイ
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment