检查 google reCAPTCHA 的响应
Checking response of google reCAPTCHA
我正在发送 google 重新验证并获取响应对象
stdClass Object
(
[success] => 1
[challenge_ts] => 2016-03-01T18:15:36Z
[hostname] => localhost
)
如何获取成功的值以查看它是否为 1
PS:值名称为 $response.I 尝试执行 if($response["success"] === true) 无效。
根据您的评论,很明显响应是一个对象,而不是数组。
因此您必须使用
$response->success;
而不是
$response["success"];
我正在发送 google 重新验证并获取响应对象
stdClass Object
(
[success] => 1
[challenge_ts] => 2016-03-01T18:15:36Z
[hostname] => localhost
)
如何获取成功的值以查看它是否为 1
PS:值名称为 $response.I 尝试执行 if($response["success"] === true) 无效。
根据您的评论,很明显响应是一个对象,而不是数组。
因此您必须使用
$response->success;
而不是
$response["success"];