<?php function pulisci_array48mom(array $input): array { return array_filter($input, function ($entry) { return is_int($entry[0]) && is_double($entry[1]) && is_double($entry[2]) && is_numeric($entry[3]) && is_numeric($entry[4]) && is_string($entry[5]) && is_int($entry[6]); }); } $input = pulisci_array48mom([ [1530270934000, 19.4034, -155.2675, 3, 1, 'E', 612], ['1530270934000', 19.4034, -155.2675, 3, 2, 'E', 612], [1530270934000, 19.4034, -155.2675, 3, 3, 'E', 612], ]); print_r($input);
You have javascript disabled. You will not be able to edit any code.