I assume that you have decrypted the string you gave with json_decode , for example ...
$data = json_decode($json_string, TRUE);
To access statistics for a specific employee, simply use ...
$worker_stats = $data['workers'][' myemail@gmail.com '];
To check if he is alive, for example, you go with ...
$is_alive = $worker_stats['alive'];
It's really that simple. )
source share