From b7e9bdb3906313335effc7b12141e0002c8e8c71 Mon Sep 17 00:00:00 2001 From: Shivam Mathur Date: Fri, 20 Mar 2026 16:23:29 +0530 Subject: [PATCH] Add instructions for Windows zip downloads --- include/download-instructions/windows-downloads.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/download-instructions/windows-downloads.php b/include/download-instructions/windows-downloads.php index 89e7525bcc..77e6445740 100644 --- a/include/download-instructions/windows-downloads.php +++ b/include/download-instructions/windows-downloads.php @@ -42,6 +42,15 @@ function ws_build_label(string $k, array $entry): string { return trim(($tool ? $tool . ' ' : '') . ($arch ? $arch . ' ' : '') . $ts . ($mt ? ' ' . $mt . ' UTC' : '')); } +echo <<<'HTML' +Architecture +

It is recommended to use x64 builds of PHP as almost all Windows installations currently support x64.

+Thread Safety +

NTS builds are for single-threaded use cases, typically PHP running via FastCGI or on the CLI. TS builds support multithreaded SAPIs and are intended for PHP loaded as a web server module. So, if you want to use PHP as FastCGI with IIS, use the Non-Thread Safe (NTS) builds of PHP, or if you want to use the Apache HTTP Server, use the Thread Safe (TS) builds of PHP.

+Visual Studio Versions +

The builds below are built using Visual Studio 2019 (VS16) or Visual Studio 2022 (VS17) compiler. They require the Visual C++ Redistributable for Visual Studio 2015-2022 x64 or x86 installed.

+HTML; + echo '

PHP ' . htmlspecialchars($version) . ' (' . $fullVersion . ')

'; if (!empty($verBlock['source']['path'])) {