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