So lets say I have an array and when I var_dump();
it, it has the following output:
[1]=>
string(20) "Name: Kevin"
[2]=>
string(20) "Age: 20"
Can I manipulate it using implode or explode so that the output would look like this:
[Name]=>
string(5) "Kevin"
[Age]=>
string(2) "20"
Any help would be appreciated.