Mac下的PHP的配置与运行

Posted pxuan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac下的PHP的配置与运行相关的知识,希望对你有一定的参考价值。

Mac系统一般都自带了Apache和php环境,python2.7 只是默认情况下没有开启。

1、打开终端,查看本机的Apache版本:

apachectl -version

 
2、查看本机的PHP版本:

php -version

 

3、开启Apache

sudo apachectl start

 关闭Apache:

sudo apachectl stop

 重启Apache:

sudo apachectl restart

 

4、开启PHP

sudo vim /etc/apache2/httpd.conf

 找到#LoadModule php7_module libexec/apache2/libphp7.so,去掉注释(删除前面的井号)

以上是关于Mac下的PHP的配置与运行的主要内容,如果未能解决你的问题,请参考以下文章

Apache VirtualHost的配置

在Mac系统下配置PHP运行环境

在Mac系统下配置PHP运行环境

在Mac系统下配置PHP运行环境

在Mac系统下配置PHP运行环境

mac配置php-fpm,nginx运行多版本php