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