- var_export: documentation ( source)
- array_walk: documentation ( source)
<?php
$members = [
'myname' => ['userid' => 52, 'age' => 46],
'isname' => ['userid' => 22, 'age' => 47],
'yourname' => ['userid' => 47, 'age' => 85]
];
array_walk($members, fn(&$row, $col) => $row += [$col]);
var_export($members);