我目前正在尝试本地化我的网站,所有数据都将存储在 JSON 文件中。所以我想知道如何使用php获取数据
这是我的示例 JSON 文件/数据
{
"en-us": {
"registration": {
"INVALID_USERNAME": "your username is taken",
"INVALID_PASSWORD": "your password is not strong",
"INVALID_EMAIL": "your email is invalid"
},
"login": {
"INVALID_USERNAME": "please enter your username",
"INVALID_PASSWORD": "please enter your password",
"INVALID_LOGIN": "username or password is wrong"
}
}
}
现在我如何从注册部分获取值 INVALID_USERNAME?我已经尝试过了,但它不起作用。
$obj = json_decode(file_get_contents("en-us.json")); //file containing the json data above
echo $obj->{'INVALID_USERNAME'};
抱歉,我是 php 和 JSON 的新手,提前感谢您的帮助,Vidhu