CakeFest 2024: The Official CakePHP Conference

Windows 下的 PHP 安装程序工具

PHP 安装工具

Windows 下使用 Apache 安装 PHP 应用程序: » XAMPP 、WampServer 和 BitNami。

在 Windows 上设置和配置 Nginx 需要更多的配置。 参见 » Nginx文档 来获取更多的设置帮助。

add a note

User Contributed Notes 2 notes

up
6
karlcoupons127 at gmail dot com
9 months ago
I had success installing PHP on windows with chocolatey, the package manager for windows. As of this comment, the version choco provided was 8.2.7, which is the latest.

One command from an elevated powershell: 'choco install php'

https://community.chocolatey.org/packages/php
up
-11
Arthur
5 months ago
Highly suggest installing winget from the Windows Store (Called "App Installer" there) and using `winget install php` from the terminal. Easiest way in my opinion
To Top