需先下載PHP7.2和PHP5.6版本的XAMPP
xampp-win32-7.2.4-0-VC15-installer(請點我)
xampp-win32-5.6.35-0-VC11-installer(請點我)
1.安裝「xampp-win32-7.2.4-0-VC15」在D:\xampp
xampp-win32-7.2.4-0-VC15-installer(請點我)
xampp-win32-5.6.35-0-VC11-installer(請點我)
1.安裝「xampp-win32-7.2.4-0-VC15」在D:\xampp
2.進入D:\xampp找到名為「php」的資料夾名稱,將它更改為「php-7.2.4」,
並複製到一個暫存位置存放
3.進入D:\xampp\apache\conf的「extra」資料夾中,將名為「httpd-xampp.conf」的檔案改名為「httpd-xampp-php7.conf」, 並複製到一個暫存位置存放
4.將「xampp-win32-7.2.4-0-VC15」移除後,在安裝「xampp-win32-5.6.35-0-VC11」
5. 進入D:\xampp找到名為「php」的資料夾名稱,將它更改為「php-5.6.35」,並將剛剛複製到暫存位置的「php-7.2.4」的資料夾,放到同一個層級的目錄中
6.進入D:\xampp\apache\conf的「extra」資料夾中,將名為「httpd-xampp.conf」的檔案改名為「httpd-xampp-php5.conf」,並將剛剛複製到暫存位置的「httpd-xampp-php7.conf」的檔案,放到同一個層級的目錄中」
7.建立2個.bat的轉換檔,並放在自訂的「php-switch」資料夾中(放在自己好找到的地方)
php724.bat
記事本打開,另存成檔名「php724.bat」,檔案內容如下
---------------------------------------------------------------------------------------------------
@echo off
rmdir D:\xampp\php
mklink /J D:\xampp\php D:\xampp\php-7.2.4
del D:\xampp\apache\conf\extra\httpd-xampp.conf
copy D:\xampp\apache\conf\extra\httpd-xampp-php7.conf
D:\xampp\apache\conf\extra\httpd-xampp.conf
echo The version of PHP 7.2.4 is set
pause
---------------------------------------------------------------------------------------------------
php5635.bat
記事本打開,另存成檔名「php5635.bat」,檔案內容如下
---------------------------------------------------------------------------------------------------
@echo off
rmdir D:\xampp\php
mklink /J D:\xampp\php D:\xampp\php-5.6.35
del D:\xampp\apache\conf\extra\httpd-xampp.conf
copy D:\xampp\apache\conf\extra\httpd-xampp-php5.conf
D:\xampp\apache\conf\extra\httpd-xampp.conf
echo The version of PHP 5.6.35 is set
pause
---------------------------------------------------------------------------------------------------
如何使用:
PHP5.6 > PHP7.2
先將XAMPP的Apache和MySQL關掉,並點選「php-switch」資料夾中的「php724.bat」點兩下打開,再回去將XAMPP的Apache和MySQL,就完成了
PHP7.2 > PHP5.6
先將XAMPP的Apache和MySQL關掉,並點選「php-switch」資料夾中的「php5635.bat」點兩下打開,再回去將XAMPP的Apache和MySQL,就完成了
如果另外安裝imagick是否會有問題?
回覆刪除imagick我依樣畫葫蘆也安裝好了
刪除也是加在bat裡跟著切換版本 讚