(1)可以用array_key_exists去判断object对象或array数组中是否含有某个键;
(2)不可以用isset去判断判断object对象或array数组中是否含有某个键
$decodedJsonObj
= json_decode(
$respJson
);
var_dump(
array_key_exists
(
"access_token"
,
$decodedJsonObj
));
(1)可以用array_key_exists去判断object对象或array数组中是否含有某个键;
(2)不可以用isset去判断判断object对象或array数组中是否含有某个键
$decodedJsonObj
= json_decode(
$respJson
);
var_dump(
array_key_exists
(
"access_token"
,
$decodedJsonObj
));