<?php
$verify = file_get_contents($url, false, $context);
$captcha_success = json_decode($verify);
$arr = var_export($captcha_success, true);
$score = $arr['score'];
?>
echo $verify toont
{ "success": true, "challenge_ts": "2018-05-09T20:17:34Z", "hostname": "xxx", "score": 0.9 }
echo $arr toont
stdClass::__set_state(array( 'success' => true, 'challenge_ts' => '2018-05-09T20:18:46Z', 'hostname' => 'xxx', 'score' => 0.9, ))
echo $score toont s
En ik wil $score = 0.9 gaan gebruiken.