LoginSignup
8
8

More than 5 years have passed since last update.

PHPの...演算子は参照つきで展開される

Last updated at Posted at 2016-03-10
<?php
$angels = [
    ['ら', 'く', 'や', 'ね', 'さ', 'あ'],
    ['せ', 'な', 'の', 'り', 'み', 'い'],
    ['だ', 'ち', 'あ', 'や', 'う', 'ま'],
];
array_multisort(
    [1, 1, 4, 5, 1, 4],
    [9, 3, 1, 8, 1, 0],
    ...$angels
);
print_r(array_map('implode', $angels));

【注意】 HHVMでは参照つきではないもよう.

8
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8