<?php

$input = json_decode(file_get_contents("php://stdin"), false);

//Get the key of the match
$key = array_search('test2', array_column($input, 'name'));

//Get the id beloning to the name
$id = $input[$key]->id;


echo $id;