"images": [ "1,2,3" ]
I want to split it into ['img':1,img:2,img:3]
This is in json format, you have to convert it into an array first and then process it
list(img_one,img_two,img_three) = explode(',',$image);
Try it out
Doesn't seem to work
array_flip, just apply this function
This is in json format, you have to convert it into an array first and then process it
list(img_one,img_two,img_three) = explode(',',$image);
Try it out
Doesn't seem to work
array_flip, just apply this function