I can't parse this json string given below, anybody suggest some good option:
$json_string = '{{"name":"ff","phone":344543},{"name":"sdf","phone":344543}, {"name":"sfsd","phone":344543}}';
i have tried json_decode($json_string); but not working. I need to parse this string and retrieve the coontants as normal array. please help.
Thanks