使用命名键访问数组的成员。
$people = array("mumu"=>"27", "Amy"=>"21", "John"=>"42"); echo $people['Amy']; // 输出 21
0