可能重复:
如何检查数组元素是否存在?
如果我错了,我很抱歉,我是 PHP 新手,有没有办法在使用PHP 中的函数Json
解码后找出字符串中是否存在键。json_decode
$json = {"user_id":"51","password":"abc123fo"};
简短的:
$json = {"password":"abc123fo"};
$mydata = json_decode($json,true);
user_id = $mydata['user_id'];
如果json字符串不包含user_id,它会抛出一个异常Undefined index user_id
,所以有没有办法检查Json字符串中是否存在密钥,请帮助我,我正在使用PHP 5.3 and Codeigniter 2.1 MVC
提前谢谢