Skip to content

Instantly share code, notes, and snippets.

@IMSoP
Created October 2, 2016 21:08
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 IMSoP/8c62c97afc8765f418468b28a501409e to your computer and use it in GitHub Desktop.
Save IMSoP/8c62c97afc8765f418468b28a501409e to your computer and use it in GitHub Desktop.
<?php
$options = [
'http' => [
'protocol_version' => '1.1',
'header' => 'Connection: Close'
],
];
$ctx = stream_context_create($options);
echo file_get_contents('https://http2.golang.org/reqinfo', false, $ctx);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment