Skip to content
Advertisement

Create associative array with a static string for values and keys from an array column

I have an array object like this:

JavaScript

And I want to have this:

JavaScript

My current approach:

JavaScript

Is there a cleaner/better approach than this? Thanks

Advertisement

Answer

You can use array_map to get all the keys, then use array_fill_keys to populate the final array.

JavaScript

If sample text is part of the stdClass object:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement