<?php $array = [ [2015 => '2015'], [2016 => '2016'], [2017 => '2017'], [2018 => '2018'], [2019 => '2019'], [2020 => '2020'], [2021 => '2021'], [2022 => '2022'], [2023 => '2023'] ]; $result = []; array_walk($years, function($row) use(&$result) { $k = key($row); $result[$k] = $row[$k]; }); var_export($result);
You have javascript disabled. You will not be able to edit any code.