mac+php+xdebug+phpstorm在苹果下配置xdebug一波三折

1.下载xdebug文件php

http://xdebug.org/wizard.phpgit

将phpinfo()的源代码复制到文本框中,xdebug会提示如何配置和下载哪一个版本的xdebug。github

所有下载地址:web

http://www.xdebug.org/download.phpchrome

Instructions

Download xdebug-2.3.3.tgz
Unpack the downloaded file with tar -xvzf xdebug-2.3.3.tgz
Run: cd xdebug-2.3.3
Run: phpize (See the FAQ if you don't have phpize.

As part of its output it should show:

Configuring for:
...
Zend Module Api No:      20121212
Zend Extension Api No:   220121212
If it does not, you are using the wrong phpize. Please follow this FAQ entry and skip the next step.

Run: ./configure
Run: make
Run: cp modules/xdebug.so /usr/lib/php/extensions/no-debug-non-zts-20121212
Edit /etc/php.ini and add the line
zend_extension = /usr/lib/php/extensions/no-debug-non-zts-20121212/xdebug.so
Restart the webserver

在xdebug官网会有许多安装提示。其中可能会出现的问题有:apache

phpize没有安装:继而又要安装brew,再安装autoconf可谓一波三折ruby

2.解决相关组件不全的问题服务器

问题描述
Mac系统升级到10.9(mavericks)时安装php扩展,执行 phpize 提示以下错误:

Cannot find autoconf. Please check your autoconf installation
and the $PHP_AUTOCONF environment variable.
解决办法
先安装Homebrew:
若是如下连接失效的话,能够到brew官网查看。http://brew.sh/
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
而后安装 autoconf:

brew install autoconf

3.配置php.inicurl

在xdebug官网上的配置,只可以正确配置好xdebug可是不能与phpstorm进行配置。在php.ini末尾加上以下代码:phpstorm

[xdebug]
zend_extension="/usr/lib/php/extensions/no-debug-non-zts-20121212/xdebug.so"
xdebug.remote_enable = On
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "localhost"
xdebug.remote_port = 9000
xdebug.idekey = PHPSTROM

4.配置phpstorm

打开phpStorm,
-进入File>Settings>PHP>Servers,这里要填写服务器端的相关信息,name填localhost,host填localhost,port填80,debugger选XDebug
-进入File>Settings>PHP>Debug,看到XDebug选项卡,port填9000,其余默认
-进入File>Settings>PHP>Debug>DBGp Proxy,IDE key 填 phpStorm,host 填localhost,port 填80
-点OK退出设置。

在phpStorm里打开监听(电话按钮)。

 5.chrome的xdebug配置

在IDE key里将其配置成“phpStorm”

项目地址:https://github.com/mac-cain13/xdebug-helper-for-chrome

好了,到此就能够配置完成了,有问题的话能够给我留言,你们一块儿交流。

6.其余:

重启apache

sudo apachectl restart

修改php.ini权限

sudo chmod 0777 php.ini

编辑php.ini文件

sudo vi php.ini(修改i,退出:q,保存退出:wq)

相关文章
相关标签/搜索