<?php $arr = [53, 182, 435, 591, 637]; $filtered_arr = array_filter($arr, fn($number) =>$number % 13 !== 0); print_r($filtered_arr);
You have javascript disabled. You will not be able to edit any code.