我想使用reCaptcha之类的Google服务,但我遇到了一个PHP问题,在向Google发送https请求时,这对我不起作用。
根据我的理解,我需要启用cUrl扩展,并在php.ini中启用它。但问题并没有解决。
如果有人能指导我完成通过PHP发送https请求的过程,我会很高兴
答案 0 :(得分:1)
$url = 'url.php';
$fields = ['Code' => "1", 'Sequence' => "1"];
$postvars = http_build_query($fields);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, count($fields));
curl_setopt($ch, CURLOPT_POSTFIELDS, $postvars);
$result = curl_exec($ch);
curl_close($ch);