Php

將 PHP 從 7.2 升級到 7.4

  • September 3, 2021

所以,我在我的本地機器(Ubuntu 20.04)上安裝了多個版本的 PHP。7.2我正在嘗試在和之間切換7.4。這是我的方法: -

$ sudo update-alternatives --config php
There are 3 choices for the alternative php (providing /usr/bin/php).

 Selection    Path             Priority   Status
------------------------------------------------------------
 0            /usr/bin/php8.0   80        auto mode
 1            /usr/bin/php7.2   72        manual mode
* 2            /usr/bin/php7.4   74        manual mode
 3            /usr/bin/php8.0   80        manual mode

Press <enter> to keep the current choice[*], or type selection number: 

並命令重新啟動伺服器:

systemctl restart apache2

那麼,為什麼回到我的瀏覽器並phpinfo()請求系統報告我仍在使用7.2

在此處輸入圖像描述

阿帕奇不知道你想要什麼。試試這個:第一次禁用 php7.2 模組

a2dismod php7.2

之後,啟用php7.4

a2enmod php7.4

並重啟apache

systemctl restart apache2

引用自:https://unix.stackexchange.com/questions/667447