<?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);
You have javascript disabled. You will not be able to edit any code.