如何让Xdebug为php 7.3和apache(MACOS)工作

问题描述 投票:2回答:2

我正在尝试使用Xdebug(我用pecl安装了2.7)为php工作,但收到以下错误。

php -v
Xdebug requires Zend Engine API version 320160303.
The Zend Engine API version 320180731 which is installed, is newer.
Contact Derick Rethans at http://xdebug.org/docs/faq#api for a later version of Xdebug. 

PHP 7.3.3 (cli) (built: Mar  8 2019 16:40:07) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.3.3, Copyright (c) 1998-2018 Zend Technologies
    with Zend OPcache v7.3.3, Copyright (c) 1999-2018, by Zend Technologies

我已经使用Homebrew安装了最新版本的PHP 7.3,但Apache使用的是PHP 7.1.23版。我想我遇到了问题因为我使用的是错误的Zend API版本。

httpd.conf中的php配置是

LoadModule php7_module libexec/apache2/libphp7.so

phpize给出以下内容。

/usr/local/bin/phpize -v
        Configuring for:
        PHP Api Version:         20180731
        Zend Module Api No:      20180731
        Zend Extension Api No:   320180731

我已经将以下内容添加到php.ini中

zend_extension=/usr/lib/php/extensions/no-debug-non-zts-20160303/xdebug.so

这里存在:

/usr/lib/php/extensions/no-debug-non-zts-20160303  ls
opcache.a  opcache.so xdebug.so

我的问题

  • 如何让apache使用php 7.3?
  • 这会解决我的Xdebug问题吗?
php apache xdebug
2个回答
2
投票

经过相当多的研究后,我找到了以下工具。

https://xdebug.org/wizard.php

我按照说明进行了一些路径所需的微小更改,Xdebug现在正在工作。


2
投票

xdebug网站目前只有64-bitPHP 7.3版本; PECL网站有XAMPP所需的32-bit版本。

一旦xdebug 2.7生产,这将被纠正,但同时PECL site是解决方法。

© www.soinside.com 2019 - 2024. All rights reserved.