芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/vendor/azjezz/psl/src/Psl/Vec/concat.php
$first * @param iterable
...$rest * * @return list
*/ function concat(array $first, iterable ...$rest): array { $first = values($first); foreach ($rest as $arr) { foreach ($arr as $value) { $first[] = $value; } } return $first; }