I need to echo the value of "summary"
{
"expand":"names",
"startAt":0,
"maxResults":50,
"total":1,
"issues":[
{
"expand":"example",
"id":"129018",
"self":"https://example.com",
"key":"914",
"fields":{
"summary":"Hello there"
}
}
]
}
The below code does not work:
$array_result = json_decode($run_curl, true);
$title = $array_result['issues']['fields']['summary];
What am I doing wrong here? I am pretty sure it's smth simple and obvious.