I am integrating Third Party API and in Response, they are sending in the below format but I want to convert in JSON array
Response:
$str = '[[name,class,rollno],[abhishek,tenth,556],[Rahul,Nine,20]]';
**Response is in String format
Want to convert:
[{"name":"abhishek","class":"tenth","rollno":"50"},{"name":"Rahul","class":"nine","rollno":"20"}]