PHP 배열에서 짝수만 필터링

(PHP 배열에서 짝수만 필터에서 넘어옴)

1 개요[ | ]

PHP 배열에서 짝수만 필터링
$nums = [1, 2, 3, 4, 5];
$filtered = array_filter($nums, function($el) { return !($el & 1); });
foreach($filtered as $n) echo "$n "; // 2 4

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}