Home  >  Article  >  php教程  >  奇偶筛选,关于php的品格

奇偶筛选,关于php的品格

PHP中文网
PHP中文网Original
2016-05-25 16:59:281425browse


<?php
function pick_one_side($arr, $need_odd){
	return array_filter($arr, function($item) use($need_odd){
		return $need_odd ? ($item & 1) : (!($item & 1));
	});
}

$one_side = pick_one_side(range(1, 100), false);
print_r($one_side);

                   

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn