i'm using Microsoft Emotion Api and it return a result as a json. so i want to access emotion values and assign that values to php variables. i used json_decode function but it can't do it. result like below
[  
  {
    "faceRectangle": {
      "left": 63,
      "top": 94,
      "width": 66,
      "height": 97
    },
    "scores": {
      "anger": 0.00300731952,
      "contempt": 2.18678448E-08,
      "disgust": 9.284124E-06,
      "fear": 0.0001912825,
      "happiness": 0.9874571,
      "neutral": 0.0009631537,
      "sadness": 1.887755E-05,
      "surprise": 0.008223598
    }
  }
]
 
     
    