使用 PHP 获取 JSON 密钥

Get JSON key with PHP

我有一个 JSON 看起来像这样

$array = '{
    "de": {
        "name": "last_name",
        "label": "Last Name",
        "f_type": "input"
    },
    "en": {
        "name": "last_name",
        "label": "Last Name",
        "f_type": "input"
    }
}';

我想要实现的是当语言为英语时显示 en 数组

中的值

然后我像这样循环 JSON。

$json_values = json_decode( $array, true);

foreach ($json_values as $key) {
    foreach ($key as $item => $value) {
        if ($item == 'label') {
            $label = $value;
        }
        if ($item == 'name') {
            $name = $value;
        }
        if ($item == 'f_type') {
            if ($value == 'input') {
            echo  '<div class="form-group"><label for="usr">'.$label.':</label>
                    <input type="text" value="'.$name.'" class="form-control"></div>';
            }
        }
    }
}

但是,如果我尝试获取语言键名称并比较它是否是这样的特定值,则它不起作用

foreach ($json_values as $key) {
   if( $key == 'en'){
      echo "language is English";
      }
}

所以,我不知道如何检查语言是什么以及如何只显示该语言的值。

$json = '{
    "de": {
        "name": "last_name",
        "label": "Last Name",
        "f_type": "input"
    },
    "en": {
        "name": "last_name",
        "label": "Last Name",
        "f_type": "input"
    }
}';

$json = json_decode($json,true);
$lang = 'en';

if($lang == 'en'){
    $values = $json[$lang];
} else {
    $values = $json['de'];
}

echo  '<div class="form-group"><label for="usr">'.$values['label'].':</label><input type="text" value="'.$values['name'].'" class="form-control"></div>';