<?php $reduce_unwanted_colors = function (&$arr) use (&$reduce_unwanted_colors) { $rand_key = array_rand($arr); if ($arr[$rand_key] == 'blue') { return $arr; } else { unset($arr[$rand_key]); return $reduce_unwanted_colors($arr); } }; $arr = ['red', 'green', 'blue', 'orange', 'yellow']; print_r($reduce_unwanted_colors($arr));
You have javascript disabled. You will not be able to edit any code.