CakeFest 2024: The Official CakePHP Conference

PHP-Installationsprogramme für Windows

PHP-Installationsprogramme

Um PHP-Anwendungen mit Apache als Webserver unter Windows zu installieren, bieten sich » XAMPP, WampServer und BitNami an.

Die Installation und Einrichtung von Nginx unter Windows erfordert ein wenig mehr Konfigurationsaufwand. Hilfe zur Installation ist in der » Nginx-Dokumentation zu finden.

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