<?php $arrays = [ ["ssl" => true], ["analytics" => true], [ "captchaResult" => "CAPTCHA_NOT_NEEDED", "kind" => "pagespeedonline#result", "responseCode" => 200 ] ]; $result = []; array_walk_recursive($arrays, function ($value, $key) use (&$result) { $result[$key] = $value; }); print_r($result); echo $result['ssl'];
You have javascript disabled. You will not be able to edit any code.