I have an associative array, which when var dumped looks like this:
Array ( [tumblr] => Array ( [type] => tumblr [url] => http:
As you can see, the keys are custom tumblr and twitter, not the numeric 0 and 1.
Several times I need to get values ββusing custom keys, and sometimes I need to get values ββusing numeric keys.
Is there a way I can get $myarray[0]
for output:
( [type] => tumblr [url] => http:
TK123 source share