0
2

More than 5 years have passed since last update.

XAMPP複数Versionを共存させる

Last updated at Posted at 2017-09-03

PHPのバージョンが違ったりするので(5.xと7)それぞれ必要なケースで。

zip解凍版を別フォルダに分けて使い分ければOKです。

パソコンにWebサーバを作る XAMPP の最新版を入れる

こんなバッチつくって切り替えたりしてます。

@echo off
cls
:TOP
set /p version="PHP version?(5,7):"
if %version%==5 ( 
  set xampp="C:\path\to\xampp5\xampp-control.exe"
) else if %version%==7 ( 
  set xampp="C:\path\to\xampp7\xampp-control.exe"
) else (
  echo %version% is unsupported version.
  goto :TOP
)
call %xampp%
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2