php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #67739 Windows 8.1/Server 2012 R2 OS build number reported as 6.2 (instead of 6.3)
Submitted: 2014-08-01 20:35 UTC Modified: 2014-08-04 08:03 UTC
From: [email protected] Assigned: ab (profile)
Status: Closed Package: PHP options/info functions
PHP Version: 5.6Git-2014-08-01 (Git) OS: Windows 8.1
Private report: No CVE-ID: None
 [2014-08-01 20:35 UTC] [email protected]
Description:
------------
The phpinfo() output on Windows 8.1 and Windows Server 2012 R2 reports the internal OS build version as 6.2.

This is due to the deprecation of GetVersionEx (which we are using) on these platforms - http://msdn.microsoft.com/en-us/library/windows/desktop/dn302074%28v=vs.85%29.aspx

Once we compile the Windows builds with the Visual Studio 2013 compiler and the Windows 8.1 SDK, _NT_TARGET_VERSION=$(_NT_TARGET_VERSION_LATEST) seems to help. However until then we need a different approach. 

In bug #67407 (PR php-src/691) we already fixed a similar issue for the full Windows version name. Since there is a small performance penalty with that approach already, the attached pull request recycles the result of the windows version name test (although it does not look very elegant).

Test script:
---------------
<?php
  phpinfo(INFO_GENERAL);


Expected result:
----------------
Output contains "build 6.3" on a Windows 8.1/Windows Server 2012 R2 machine.


Actual result:
--------------
Output contains "build 6.2" on a Windows 8.1/Windows Server 2012 R2 machine.


Patches

Pull Requests

Pull requests:

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2014-08-02 05:51 UTC] [email protected]
-Assigned To: +Assigned To: ab
 [2014-08-04 08:03 UTC] [email protected]
-Status: Assigned +Status: Closed
 [2014-08-04 08:03 UTC] [email protected]
Merged with 8eeacd33646d9b09192ecee8323f222b5963657b and backported into 5.4+.

Thanks!
 [2014-08-28 07:59 UTC] [email protected]
could you update the NEWS file, too? Thank you! :)
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Tue Apr 29 05:01:31 2025 UTC