On 25.01.2021 at 21:22, Kalle Sommer Nielsen wrote: > Hi Christoph > > Den man. 25. jan. 2021 kl. 16.13 skrev Christoph Michael Becker > <[email protected]>: >> + case version_compare($version, '7.4.0') < 0: >> + $vc = 'VC15'; >> + break; >> + case version_compare($version, '8.0.0') < 0: >> + $vc = 'vc15'; >> + break; >> + default: >> + $vc = 'vs16'; > > Is this capitalization of `VC15` correct for the above? None of the > file names in the `$versions` array below uses this convention.
For PHP 7.3, the GA and QA releases use the upper case spelling, but the snapshots use lower case; so this is correct, although it doesn't really matter in practice, since NTFS is case-insensitive, and IIS appears to cater to that. Cheers, Christoph -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
