currently this is my one dimensional array looks like
[0] => Spiderman
[1] => Burger
[3] => Batman
[4] => Robin
now i want to add another key at each array value, for example
[0]['isMovie'] = 'Yes'
[1]['isMovie'] = 'No'
[2]['isMovie'] = 'Yes'
[3]['isMovie'] = 'Yes'
so that next time when i iterate through the array, i will know which value is a movie or not.
i tried something like [0]['isMovie'] = 'Yes' but it seems it just changed the current value of the array to something like Ypiderman