在 WSL2 中频繁切换 PHP 版本,可以使用更简便的方法,例如使用 update-alternatives
工具。这是一种更系统化的方法,允许你更方便地管理和切换不同的 PHP 版本。
以下是使用 update-alternatives
工具切换 PHP 版本的步骤:
-
添加 PHP 版本到 alternatives:
首先,需要为每个 PHP 版本添加一个 alternatives 配置。sudo update-alternatives --install /usr/bin/php php /usr/bin/php7.4 74 sudo update-alternatives --install /usr/bin/php php /usr/bin/php8.2 82
-
配置 alternatives:
运行以下命令选择你想要使用的 PHP 版本。sudo update-alternatives --config php
你会看到一个类似如下的输出:
There are 2 choices for the alternative php (providing /usr/bin/php).Selection Path Priority Status ------------------------------------------------------------ * 0 /usr/bin/php8.2 82 auto mode1 /usr/bin/php7.4 74 manual mode2 /usr/bin/php8.2 82 manual modePress <enter> to keep the current choice[*], or type selection number:
输入对应的数字选择你想要使用的 PHP 版本,然后按回车。
-
验证更改:
运行以下命令来验证当前使用的 PHP 版本:php -v
通过这种方法,你可以方便地在不同的 PHP 版本之间切换,而不需要每次都手动编辑环境变量或配置文件。