3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arrays = [ ['acf_fc_layout' => 'irl_today_website_entry', 'irl_today_social' => [ ['data removed'], ['data removed'], ] ], ['acf_fc_layout' => 'irl_today_website_entry', 'irl_today_website' => [[1, 2, 3], [4, 5, 6],[7, 8, 9],] ], ]; $res = array_map(function($x, $y) { $soc = count($x); $web = count($y); return ['soc' => $soc, 'web' => $web]; }, array_column($arrays, "irl_today_social"), array_column($arrays, "irl_today_website")); print_r($res);

preferences:
33.8 ms | 406 KiB | 5 Q