mac+php+xdebug

1,下载xdebug

2,进入xdebug-2.4.0RC4目录,运行phpize命令,

2,google之后说要安装autoconf

  brew install autoconf

3,但是使用brew无法找到些命令,于是安装brew

  ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"

安装完brew之后,执行brew install autoconf

4,安装完之后在xdebug-2.4.0RC4目录下:

  ./configure

  make

5,这里会报以下错误

  /Users/slin/tools/xdebug-2.4.0RC4/xdebug.c:25:10: fatal error: ‘php.h‘ file not

        found

  #include "php.h"

           ^

  1 error generated.

  make: *** [xdebug.lo] Error 1

6,找了半天原因,是/usr下没有include 目录,这个目录就是sudo 也无法创建,会报权限不够,由于这个目录的不存在,所以phpize命令也是无法正常执行,一通搜索过后,终于有人说安装command lines tools(这里在控制台使用xcode-select --install命令就可以安装了)之后就可以解决,当我安装了之后发现/user下出现了include目录,执行make 正常,执行phpize正常,安装成功

时间: 2024-12-06 22:14:10

mac+php+xdebug的相关文章

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

1.下载xdebug文件 http://xdebug.org/wizard.php 将phpinfo()的源代码复制到文本框中,xdebug会提示如何配置和下载哪个版本的xdebug. 全部下载地址: http://www.xdebug.org/download.php Instructions Download xdebug-2.3.3.tgz Unpack the downloaded file with tar -xvzf xdebug-2.3.3.tgz Run: cd xdebug-2

Mac 安装xdebug扩展

下载 https://pecl.php.net/get/xdebug-2.7.2.tgz 解压 tar -zxvf xdebug-2.7.2.tgz 进入目录 cd xdebug-2.7.2 phpize /Applications/MAMP/bin/php/php7.3.1/bin/phpize configure ./configure --with-php-config=/Applications/MAMP/bin/php/php7.3.1/bin/php-config --enable-

mac下phpstorm配置xdebug工具

参考:PhpStorm中如何使用Xdebug工具,入门级操作方法 http://blog.csdn.net/knight_quan/article/details/51953269 如果你用的集成环境xmapp,mamp,就百度相关,比如: http://www.cnblogs.com/lishiyun19/p/4470086.html http://www.linuxidc.com/Linux/2016-06/132333.htm 而下面视频里讲的是phpstudy2016下如何安装的. 可以

mac 10.10.4 下安装xdebug不了的解决办法

mac 是10.10.4版本,安装了xampp的XAMPP for OS X 5.6.8,按照常规方法找到php版本,然后使用homebrew直接安装,再修改php.ini再重启apache怎么也不能成功(不能从phpinfo页面看到xdebug信息),最后从https://community.apachefriends.org/f/viewtopic.php?t=70686&p=242247 找到答案,说这个版本的xampp已经自带了xdebug,在/Applications/XAMPP/xa

MAC版 xampp 设置xdebug支持

MAC系统下,下载XAMPP 1.8.3-4 发现默认不支持xdebug,搜索了下文件,有xdebug 但再phpinfo()中没有显示相关的项. 修改php.ini 配置文件 ,在安装目录的/Applications/XAMPP/xamppfiles/etc/php.ini zend_extension="/Applications/XAMPP/xamppfiles/lib/php/extensions/no-debug-non-zts-20121212/xdebug.so" xde

phpStorm配置xdebug调试总结 [Mac/Linux]

本人习惯netbeans-xdebug调试 我是在Mac本上开发, 大家Linux配置xdebug也可以参考 我的PHP 是通过mac homebrew 安装,所以xdebug的安装我也是用homebrew  (类似 linux wget / yum) 直接进入话-操作命令步骤如下: 1 mac 安装homebrew :ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)&

Xampp + Zend Studio + xDebug 环境搭建 (Mac,Windows都适用)

这几天折腾了一下PHP开发环境的搭建,现总结一下安装步骤: 1. 安装 Zend Studio,然后破解. 2. 安装 Xampp 3. 配置 Xampp 3.1 配置 Apache服务端口: 修改 C:\xampp\apache\conf\httpd.conf 查找 “Listen 80”  和 "ServerName localhost:80" 改成相应的端口. 确保 Apache服务正常启动: 3.2 建立虚拟目录: 3.2.1 修改 C:\xampp\apache\conf\h

xdebug with XAMPP on Mac OS X

源blog地址http://blog.laaz.org/tech/2010/08/27/xdebug-with-xampp-on-mac-os-x/ I just upgraded my XAMPP to latest release and found myself trapped with no memory of how to install xdebug on a Mac with XAMPP. 0. Install Xcode and autoconf Thanks to Cedric

phpstorm mac xdebug配置

#在mac上用phpstorm里debug调试php## 背景最近为了完成某个需求,在看`smarty`源码,当我尝试直接看,痛苦的快吐血,工欲善其事必先利器,虽然之前一直使用phpstorm调试nodejs,但是还没有用phpstorm来debug过php. ## 建议先看看这个:PhpStorm 8.0.2 Help :: Configuring Xdebug## 安装xdebug1. 打开:Xdebug: Downloads 点击source来下载源码包2. 然后安装```bash#解压t