<?php $array = ['name' => 'aalaap','age' => 29, 'location' => 'mumbai']; var_export( array_reduce( array_keys($array), fn($result, $k) => array_merge($result, [$k, $array[$k]]), [] ) );
You have javascript disabled. You will not be able to edit any code.