My echo output is below - NOTE: This comes from a Joomla module echo statement - Output of a repeatable field.
$params->get('star_slides');
{"Field1":["/demo/slide1.jpg","/demo/slide2.jpg"],"Field2":["Content 1","Content 2"],"Field 3":["Content 3","Content 4"]}
My goal is to extract the individual values of the fields
Set 1 - Values of the first field set.
/demo/slide1.jpg
Content 1
Content 3
How can I do this using php?