I have the following array:
array(3) {
[0]=> array(1) { ["theme_loader_plugin"]=> string(4) "_run" }
[1]=> array(1) { ["user_plugin"]=> string(4) "_run" }
[2]=> array(1) { ["sessions_plugin"]=> string(4) "_run" }
}
Is there a way to remove the indexing using a predefined php function and instead format it like this:
array(3) {
["theme_loader_plugin"]=> string(4) "_run",
["user_plugin"]=> string(4) "_run",
["sessions_plugin"]=> string(4) "_run"
}