Prado\Web\UI\WebControls\TReCaptcha::recaptcha_http_post PHP Method

recaptcha_http_post() private method

Submits an HTTP POST to a reCAPTCHA server
private recaptcha_http_post ( string $host, string $path, array $data, $port = 80 ) : array
$host string
$path string
$data array
return array response
    private function recaptcha_http_post($host, $path, $data, $port = 80)
    {
        $req = $this->recaptcha_qsencode($data);
        $http_request = "POST {$path} HTTP/1.0\r\n";
        $http_request .= "Host: {$host}\r\n";
        $http_request .= "Content-Type: application/x-www-form-urlencoded;\r\n";
        $http_request .= "Content-Length: " . strlen($req) . "\r\n";
        $http_request .= "User-Agent: reCAPTCHA/PHP\r\n";
        $http_request .= "\r\n";
        $http_request .= $req;
        $response = '';
        if (false == ($fs = @fsockopen($host, $port, $errno, $errstr, 10))) {
            die('Could not open socket');
        }
        fwrite($fs, $http_request);
        while (!feof($fs)) {
            $response .= fgets($fs, 1160);
        }
        // One TCP-IP packet
        fclose($fs);
        $response = explode("\r\n\r\n", $response, 2);
        return $response;
    }