I'm using PHP 7.2.3 on my machine that runs on Windows 10.
I've installed PHP using latest version of XAMPP.
I come across following text from PHP Manual :
$_SERVER is just one variable that PHP automatically makes available to you. A list can be seen in the Reserved Variables section of the manual or you can get a complete list of them by looking at the output of the phpinfo() function.
In the above text from PHP manual it has been clearly said that I can see the complete list of such variables which PHP automatically makes available to my script.
When I observed the output of phpinfo();
I could only see the entire array of $_SERVER[]
superglobal variable. I couldn't see any other such predefined superglobal variables in the output of phpinfo();
Can I say this is a mistake in PHP manual?
Or can I say the manual is saying the thing rightly but I'm not able to get it and see the other predefined superglobal variables?
Please someone help me out in this regard.
Thank You.