I have a string like this
$string = '["_MG_0774.JPG","1.jpg","3.jpg"]';
how can I convert it into smaller string to get these 3 elements? The console I expected is that
$str1 = '_MG_0774.JPG'
$str2 = '1.jpg'
$str3 = '3.jpg'
Thanks you for your help!