<?php function isPassed($value){ return ($value > 75) ? true : false; } $vals = array(20,30,89,98,70, 78); print_r(array_filter($vals, 'isPassed')); // Array ( [2] => 89 [3] => 98 [5] => 78 ) ?>
Back to TOC Array Tips