mac下安裝php環境的方法:先透過指令「sudo apachectl start」啟動Apache服務;然後開啟「httpd.conf」檔案並取消「php5_module」前的註解符號;最後透過mac下如何安裝php環境進行測試即可。
推薦:《PHP影片教學》
最近在試著將
showdoc
# 配置到自己伺服器上,需要PHP
環境,所以自己配置了一下,這裡將方法記錄一下。
Mac
系統下是自帶Apache
服務的,只需要開啟即可,以下是幾個Apache
服務的常用指令。
/* 启动 Apache 服务 */ sudo apachectl start /* 重启 Apache 服务 */ sudo apachectl restart /* 停止 Apache 服务 */ sudo apachectl stop /* 查看 Apache 版本 */ httpd -v复制代码
Apache
服務。 sudo apachectl start
It Works
就表示 Apache
服務開啟成功。 Apache
的網站伺服器預設根目錄在下面這個路徑下。 /Library/WebServer/Documents复制代码
注意: 你的Mac
下方如果裝有Server
這個軟體要卸載掉(圖示是藍色地球的那個),否則輸入http://localhost 會顯示Server
的資訊會衝突,具體原因我沒去管,有興趣的可以了解一下。
Mac
系統下也是自帶PHP
環境的,只要將其開啟即可,如果想另外自行安裝的話,就自己去搜一下吧。
Finder
,然后按下 shift + command + G
打开前往文件夹,前往以下地址:/etc/apache2/httpd.conf
httpd.conf
这个文件,找到下面这一行,然后将前面的 #
注释符去掉,然后 command + s
保存。LoadModule php5_module libexec/apache2/libphp5.so复制代码
Apache
服务。sudo apachectl restart复制代码
Finder
,然后按下 shift + command + G
打开前往文件夹,前往以下地址,这个地址是 Apache
的默认网站服务器根目录。/Library/WebServer/Documents复制代码
mac下如何安裝php環境.php
的文件,在里面输入以下代码后,command + s
保存。<?php mac下如何安裝php環境(); ?>
PHP
环境配置成功。这里配置的是
Mac
系统自带的PHP
环境,想另外安装的就自己去搜一下吧。
以上是mac下如何安裝php環境的詳細內容。更多資訊請關注PHP中文網其他相關文章!