在 macOS 上轻松切换 PHP 版本
要跨各种 PHP 版本(例如 5.3 到 8.2)无缝测试您的应用程序,您您需要安装不同的版本并建立一种在它们之间轻松切换的机制。
安装 PHP 版本:
利用专门为 macOS 设计的包管理器 Homebrew:
<code class="bash">brew install php53 brew install php54 ... brew install php82</code>
切换 PHP 版本:
安装了多个 PHP 版本后,使用 Homebrew 的链接和取消链接命令在它们之间切换:
<code class="bash"># Switch to PHP 7.4 brew unlink php73 brew link php74</code>
此命令将从系统中取消链接 PHP 7.3,并链接 PHP 7.4。
验证版本:
要确认活动的 PHP 版本,请在中执行以下命令终端:
<code class="bash">which php</code>
这将显示活动 PHP 二进制文件的路径,指示您已成功切换到的版本。
注意:
要使上述命令正常运行,请确保您已使用 Homebrew 安装了所有必需的 PHP 版本。
以上是如何在 macOS 上轻松切换 PHP 版本?的详细内容。更多信息请关注PHP中文网其他相关文章!