<?php
$json = file_get_contents('data.json');
$json = json_decode($json,true);
$user_id=$_GET['id'];
$person = array_filter($json,function($items) use ($user_id) {
return $items['id'] == $user_id;
});
echo "<pre>";
print_r($person);
echo "<pre>";
?>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…