I'm using PHP 7.2.8 on my laptop that runs on Windows 10 Home Single Language 64-bit Operating System
I've installed PHP 7.2.8 on my laptop using the latest copy of XAMPP installer.
I come across the following text from Description of phpinfo() function from PHP Manual
Outputs a large amount of information about the current state of PHP. This includes information about PHP compilation options and extensions,......
I did not get what do exactly mean by "PHP compilation options" from the above text taken from PHP Manual.
I checked the output of phpinfo();
by running it on my laptop.
I could only see the one line in output related to the compilation which is as below :
Compiler MSVC15 (Visual C++ 2017)
Is the above line mean the "PHP compilation options" mentioned in the PHP Manual or "PHP compilation options" is something else other than this?
If "PHP compilation options" means the same line I mentioned above then why there are not more than one compilation options present in the output of phpinfo();
?