I'm trying to filter array from DB and I've got this postman response:
{
"1": {
    "id": "3",
    "key": "emails_html_body_start",
    "value": "value"
}}
How I can access to id, key, value?
My code here:
$start = array_filter($array, function ($var) {
    return ($var['key'] == 'emails_html_body_start');
}); 
echo json_encode($start);
 
     
    