array of json to array php code example
Example 1: php convert array to json object
$myArr = array("apple", "banana", "mango", "jackfruit");
$toJSON = json_encode($myArr);
echo $toJSON;
Example 2: how to get data from json array in php
$data = json_decode($json);