hello to all i have this array
["..\Uploades\Product\1.jpg", "..\Uploades\Product\2.jpg", "..\Uploades\Product\30304_dz6AW8Tp.jpg"]
i wanna convert it to this JSON
[
{
"image": "..\Uploades\Product\1.jpg",
"thumb": "..\Uploades\Product\1.jpg",
"folder": "Small"
},
{
"image": "..\Uploades\Product\2.jpg",
"thumb": "..\Uploades\Product\2.jpg",
"folder": "Small"
},
{
"image": "..\Uploades\Product\30304_dz6AW8Tp.jpg",
"thumb": "..\Uploades\Product\30304_dz6AW8Tp.jpg",
"folder": "Small"
}
]
what should i do?