Guys i have tried to get the JSON array value through PHP. its not returning any value
{
"transactionTime": "2015-11-14T03:36:11-08:00",
"receipt": "********",
"lineItems": [
{
"itemNo": "1",
}
],
}
in PHP i have tried this code
Here $decrypted contains the above formatted JSON value.
$order = json_decode($decrypted);
$id = $order['transactionTime'];
Could anyone look at it . thanks guys