作為一名Java Web的程序員,習慣了用idea工具開發,在idea中配置php的開發調試環境,共有如下幾個步驟需要依次配置:
1.Apache httpd Server的安裝與配置
下載免安裝版,解壓後在conf目錄下修改httpd.conf配置文件,末尾添加如下文本內容
Include conf/extra/httpd-vhosts.conf
AddType application/x-httpd-php .php
LoadModule php5_module "D:/php5.6/php-5.6.31-Win32-VC11-x64/php5apache2_4.dll"
PHPIniDir "D:/php5.6/php-5.6.31-Win32-VC11-x64/php.ini"
其中D:/php5.6/php-5.6.31-Win32-VC11-x64/php5apache2_4.dll和D:/php5.6/php-5.6.31-Win32-VC11-x64/php.ini是下面步驟二php安裝後的目錄文件。
在httpd-vhosts.conf配置文件中添加如下文本內容
<VirtualHost *:80>
ServerAdmin txl@ysjjovo.com
#DocumentRoot D:/php5.6/demo
DocumentRoot F:workingjavaAppidea
bacweb
<Directory "F:workingjavaAppidea
bacweb">
Require all granted
Allow from all
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
</Directory>
ServerName www.phpdemo.com
ErrorLog logs/demo-error.log
CustomLog logs/demo-access.log common
DirectoryIndex index.php index.html
</VirtualHost>
其中F:workingjavaAppidea
bacweb是項目php工程的文件目錄。
備注:此處我們需要修改下hosts文件C:WindowsSystem32driversetc,在原有hosts文件的基礎上,末尾添加如下一行即可:
127.0.0.1 www.phpdemo.com
2.安裝php與配置
下載php的壓縮文件php-5.6.31-Win32-VC11-x64.zip並解壓到D:php5.6目錄下,之後將解壓後的php.ini-development文件改名為php.ini。
其中,php.ini有如下幾個地方需要修改:
extension_dir = "D:/php5.6/php-5.6.31-Win32-VC11-x64/ext"
extension=php_mysql.dll
extension=php_mysqli.dll
extension=php_oci8_12c.dll ; Use with Oracle Database 12c Instant Client
extension=php_openssl.dll
extension=php_pdo_firebird.dll
extension=php_pdo_mysql.dll
上述主要是配置數據庫驅動,讓php能夠讀取和操作數據庫。
備注:上述第一和二兩步配置完成後就已經搭建起php的運行環境了,作為一名程序員,我們還需要搭建開發調試環境,此時需要安裝xdebug,同時配置下瀏覽器的插件。
3.穀歌瀏覽器插件安裝與配置
在穀歌瀏覽器中下載並安裝xdebug的插件,並設置為如下所示:
4.idea中Edit Configurations的配置
打開Idea工具,新建或編輯Edit Configuration如下所示:
注意:上述ide key(session id)要與第三步的IDE Key保持一致。
5.xdebug安裝與配置
網上下載xdebug的dll文件php_xdebug-2.5.5-5.6-vc11-x86_64.dll(注意xdebug的版本和線程安全類型要完全跟php的保持一致),拷貝到php的安裝目錄下的ext目錄下,之後在php.ini文件的末尾添加如下文本內容:
[xdebug]
zend_extension="D:php5.6php-5.6.31-Win32-VC11-x64extphp_xdebug-2.5.5-5.6-vc11-x86_64.dll"
xdebug.remote_enable = On
xdebug.remote_handler = dbgp
xdebug.remote_host= 127.0.0.1
xdebug.remote_port = 9110
xdebug.idekey = PHPSTORM
xdebug.remote_connect_back = 1
xdebug.remote_log =D:/php5.6/logs/xdebug/xdebug.log
上述端口9110也要與idea中的如下設置保存一致,在idea中導入php工程之前需要首先在idea中安裝php的插件(php插件安裝自行百度):