在同一台 Ubuntu 服務器上安裝和配置 PHP5 和 7 (Install and configure PHP5 and 7 on same Ubuntu server)


問題描述

在同一台 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 VanzaBorislav Sabev)

參考文件

  1. Install and configure PHP5 and 7 on same Ubuntu server (CC BY‑SA 2.5/3.0/4.0)

#php-5.5 #webserver #PHP #php-7






相關問題

當作為參數傳遞時,PHP 如何解釋和評估函數和匿名函數? (How does PHP interpret and evaluate function and anonymous function when passed as an argument?)

使用 symfony 時 PHP 5.5 無法識別服務器 (PHP 5.5 won't recognise server when using symfony)

升級到 PHP5.5 時 Wordpress 崩潰 (Wordpress crashes when upgrading to PHP5.5)

從數據庫返回多個值 (return multiple values from database)

PHP:嵌套 foreach 循環的問題 (PHP: Issue with nested foreach loops)

如果條件在幾小時、幾天內不起作用 (if condition not working for Hours,Days)

Slim 3.3 輸出中缺少字符 (Slim 3.3 missing characters in output)

PHP排序對象值但保留原始相對順序 (PHP sort objects value but retain original relative order)

遇到錯誤無法加載請求的文件:helpers/form_validation_helper.php (An Error Was Encountered Unable to load the requested file: helpers/form_validation_helper.php)

如何從類的函數內部訪問全局變量 (How to access global variable from inside class's function)

如何修改輸出緩衝區? (How to modify output buffer?)

在同一台 Ubuntu 服務器上安裝和配置 PHP5 和 7 (Install and configure PHP5 and 7 on same Ubuntu server)







留言討論