How to change PHP version on MAMP 4.1
我在我的 Mac 上下载了 MAMP 4.1;默认情况下,我可以使用的唯一 PHP 版本是 7.0.15 和 7.1.1
如何使用 PHP 5.6?
我在这里尝试了解决方案,它说我应该将我不想使用的版本重命名为其他东西。但它对我不起作用。
正如@Scott 在您的问题下的评论中提到的那样:
Your here is the right link. Use the bottom answer to rename the
bin/php directory. The MAMP preference pane will show the 2 latest
versions in the php directory. a€" Scott Eisenberg
链接中的答案是:
First stop the Server if its running. Go to"/Applications/MAMP/bin/",
rename the PHP Version you don't need (MAMP is only allowed to use 2
PHP Versions), e.g."_php5.2.17". Now MAMP will use the php versions
that are left. Go to the MAMP Manager and then settings, then switch
to the php version you need.
在我的情况下(和你的情况类似),我将名为
这就是我的"php"文件夹的样子
创建了另一个文件夹"php-versions"并移动了所有版本,并在"php"文件夹中只保留了我想要的两个版本。并重新启动 Mamp,转到版本 '5.6.31'
我使用的是 MAMP 4.5 版。我在 httpd.conf:
上更改了 php 版本
1 | /Applications/MAMP/conf/apache/httpd.conf |
我想要 php7.1 的版本,所以这就是我所做的:
原行:
1 | LoadModule php7_module /Applications/MAMP/bin/php/php7.2.1/modules/libphp7.so |
更新行:
1 | LoadModule php7_module /Applications/MAMP/bin/php/php7.1.12/modules/libphp7.so |
它对我有用!