I\'m trying to get the value from this following JSON array in a PHP variable.
This is a var_dump of the array:
array(3) { [\"id\"]=> string(2
You can decode the JSON via the json_decode function:
$json = json_decode($data[0]['json']);
Then, you'll have arrays (in the same structure) with your data.