<?php $result = json_decode('[ { "birth_place": "Administrasi Jakarta Barat", "jumlah_data_user": "3", "id": "716,764,922", "name": "Elvina Nuraini,Rina Kezia Novitasari,Viktor Firmansyah M.Pd", "birth_date": "1975-08-28,1988-06-07,1989-05-13", "gender": "female,female,male" }, { "birth_place": "Administrasi Jakarta Pusat", "jumlah_data_user": "2", "id": "993,866", "name": "Mursinin Banawa Marbun M.Pd,Ibrahim Gunawan", "birth_date": "1991-12-27,1995-01-01", "gender": "male,male" } ]', true); var_export( array_map( fn($row) => [ 'birth_place' => $row['birth_place'], 'jumlah_data_user' => $row['jumlah_data_user'], 'users' => array_map( fn(...$cols) => array_combine(['id', 'name', 'birth_date', 'gender'], $cols), explode(',', $row['id']), explode(',', $row['name']), explode(',', $row['birth_date']), explode(',', $row['gender']) ) ], $result ) );
You have javascript disabled. You will not be able to edit any code.