분류
php
Deep은 배열을 일반 배열로..
본문
<?php
function deepFlatten($items) { $result = []; foreach ($items as $item) { if (!is_array($item)) { $result[] = $item; } else { $result = array_merge($result, deepFlatten($item)); } } return $result; }
deepFlatten([1, [2], [[3], 4], 5]); // [1, 2, 3, 4, 5]
- 이전글왼쪽에서 n 개 요소가 제거 된 새 배열을 반환 18.08.31
- 다음글배열을 지정된 크기의 더 작은 배열로 채 웁니다 18.08.31