Posts by Cadu De Castro Alves • 101 points
1 post
-
0
votes1
answer41
viewsA: Access String in PHP
The body content is a JSON string. To access the ID, you first need to turn this string into an object: $body = json_decode($data['response']['body']); Now, you can access any property of body thus:…