問題描述
在同一台 Ubuntu 服務器上安裝和配置 PHP5 和 7 (Install and configure PHP5 and 7 on same Ubuntu server)
我在同一 Linux 服務器上安裝了兩個 PHP 版本 (php5 & php7),當我在系統上切換版本配置時,它對我有用。
它還顯示了瀏覽器中info.php文件發生了變化,但是在終端使用php ‑v,它只顯示了安裝的php7版本,雖然它在php5下工作。
如何在終端chk時更正php5中的版本信息?
參考解法
方法 1:
When PHP is installed side to side there are different executables for the different versions. When you use a Web Server you choose which version to use via its configuration.
If php ‑v
shows PHP 7 try php5 ‑v
. If this returns the right version you can use php5 to run any script with php5.
To find out where exactly the PHP executables are use:
which php
whereis php
which php7
whereis php7
(by Nayan Vanza、Borislav Sabev)