我的MaxMind API调用接收此数组:
object(MaxMind\MinFraud\Model\Score)#5 (8) {
["disposition":protected]=>
object(MaxMind\MinFraud\Model\Disposition)#33 (3) {
["action":protected]=>
NULL
["reason":protected]=>
NULL
["rawResponse"]=>
NULL
}
["fundsRemaining":protected]=>
float(4.94)
["id":protected]=>
string(36) "604DE3C0-13DE-11E7-B630-507824A72470"
["ipAddress":protected]=>
object(MaxMind\MinFraud\Model\ScoreIpAddress)#36 (2) {
["risk":protected]=>
float(0.01)
["rawResponse"]=>
array(1) {
["risk"]=>
float(0.01)
}
}
我如何得到这个值[“risk”] =>浮点数(0.01)?
提前致谢!
答案 0 :(得分:0)
根据documentation,您可以使用$resp->ipAddress->risk
访问IP风险评分,或使用$resp->riskScore
访问整体风险评分。