I'm trying to know the HTTP version the user used to connect to my server. The code at http://test.yccau.com (PHP 5.3.26 and Apache 2.2.24) looks like this:
<?php
echo $_SERVER["SERVER_PROTOCOL"];
?>
For some reason, the page shows HTTP/1.0
even when the request and response were both HTTP/1.1
:
What may be causing the problem? How do we get the HTTP version the web-client use to connect to the server?