Skip to content

Instantly share code, notes, and snippets.

@ParityError
Created January 24, 2019 05:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ParityError/e39717cd8b1efe6593a8d190dd8eef0a to your computer and use it in GitHub Desktop.
Save ParityError/e39717cd8b1efe6593a8d190dd8eef0a to your computer and use it in GitHub Desktop.
Testing fsockopen with pecl ssl
$fp = fsockopen("ssl://pecl.php.net", 443, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
$out = "GET / HTTP/1.1\r\n";
$out .= "Host: www.example.com\r\n";
$out .= "Connection: Close\r\n\r\n";
fwrite($fp, $out);
while (!feof($fp)) {
echo fgets($fp, 128);
}
fclose($fp);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment