首頁  >  文章  >  後端開發  >  如何使用 Apache 在 Ubuntu 16.04 的命令列上切換 PHP 版本?

如何使用 Apache 在 Ubuntu 16.04 的命令列上切換 PHP 版本?

Susan Sarandon
Susan Sarandon原創
2024-11-14 18:49:02754瀏覽

How to Switch PHP Versions on the Command Line for Ubuntu 16.04 with Apache?

Switching PHP Versions on the Command Line for Ubuntu 16.04 with Apache

When working with multiple PHP versions and Apache on Ubuntu 16.04, managing version switching can be a challenge, especially for the command line. Here's how to navigate this seamlessly:

Interactive Switching

For an immediate switch, utilize the following commands:

sudo update-alternatives --config php
sudo update-alternatives --config phar
sudo update-alternatives --config phar.phar

Manual Switching

To manually switch between PHP versions:

from PHP 5.6 to PHP 7.1 (Command Line)

sudo update-alternatives --set php /usr/bin/php7.1
sudo update-alternatives --set phar /usr/bin/phar7.1
sudo update-alternatives --set phar.phar /usr/bin/phar.phar7.1

from PHP 7.1 to PHP 5.6 (Command Line)

sudo update-alternatives --set php /usr/bin/php5.6

Remember to run sudo service apache2 restart to apply changes made to the Apache configuration.

以上是如何使用 Apache 在 Ubuntu 16.04 的命令列上切換 PHP 版本?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn