首页 文章

使用Homebrew在OSX上安装适用于PHP 5.6的Xdebug

提问于
浏览
10

自制软件/ php自来水是recently deprecated . 此弃用包括用于php安装的版本化公式(例如, php56 )以及各个扩展的安装(例如, php56-xdebug ) .

现在用Homebrew安装PHP 5.6需要命令: brew install php@5.6 .

安装PHP 5.6然后运行 phpinfo() 表示Xdebug未加载到扩展列表中,并且找不到调试器扩展 . 输出的选择性副本如下:

$ /usr/local/Cellar/php\@5.6/5.6.35/bin/php -r "phpinfo();"

PHP Version => 5.6.35

System => Darwin [my hostname] 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 x86_64
Build Date => Mar 31 2018 20:19:57
Configure Command =>  './configure'  '--prefix=/usr/local/Cellar/php@5.6/5.6.35' '--localstatedir=/usr/local/var' '--sysconfdir=/usr/local/etc/php/5.6' '--with-config-file-path=/usr/local/etc/php/5.6' '--with-config-file-scan-dir=/usr/local/etc/php/5.6/conf.d' '--enable-bcmath' '--enable-calendar' '--enable-dba' '--enable-exif' '--enable-ftp' '--enable-fpm' '--enable-intl' '--enable-mbregex' '--enable-mbstring' '--enable-mysqlnd' '--enable-opcache-file' '--enable-pcntl' '--enable-phpdbg' '--enable-phpdbg-webhelper' '--enable-shmop' '--enable-soap' '--enable-sockets' '--enable-sysvmsg' '--enable-sysvsem' '--enable-sysvshm' '--enable-wddx' '--enable-zip' '--with-apxs2=/usr/local/opt/httpd/bin/apxs' '--with-bz2' '--with-fpm-user=_www' '--with-fpm-group=_www' '--with-freetype-dir=/usr/local/opt/freetype' '--with-gd' '--with-gettext=/usr/local/opt/gettext' '--with-gmp=/usr/local/opt/gmp' '--with-icu-dir=/usr/local/opt/icu4c' '--with-jpeg-dir=/usr/local/opt/jpeg' '--with-kerberos' '--with-layout=GNU' '--with-ldap' '--with-ldap-sasl' '--with-libedit' '--with-libzip' '--with-mhash' '--with-mysql-sock=/tmp/mysql.sock' '--with-mysqli=mysqlnd' '--with-mysql=mysqlnd' '--with-mcrypt=/usr/local/opt/mcrypt' '--with-ndbm' '--with-openssl=/usr/local/opt/openssl' '--with-pdo-dblib=/usr/local/opt/freetds' '--with-pdo-mysql=mysqlnd' '--with-pdo-odbc=unixODBC,/usr/local/opt/unixodbc' '--with-pdo-pgsql=/usr/local/opt/libpq' '--with-pgsql=/usr/local/opt/libpq' '--with-pic' '--with-png-dir=/usr/local/opt/libpng' '--with-pspell=/usr/local/opt/aspell' '--with-unixODBC=/usr/local/opt/unixodbc' '--with-webp-dir=/usr/local/opt/webp' '--with-xmlrpc' '--with-xsl' '--with-zlib' '--with-curl' 'CC=clang' 'CPPFLAGS=-DU_USING_ICU_NAMESPACE=1' 'CXX=clang++'

Server API => Command Line Interface
Virtual Directory Support => disabled
Configuration File (php.ini) Path => /usr/local/etc/php/5.6
Loaded Configuration File => /usr/local/etc/php/5.6/php.ini
Scan this dir for additional .ini files => /usr/local/etc/php/5.6/conf.d
Additional .ini files parsed => /usr/local/etc/php/5.6/conf.d/ext-opcache.ini

...
...

运行 brew options phpbrew options php@5.6 不会产生有关在自制软件安装过程中安装其他扩展的选项的信息 . brew search xdebug 不会产生任何感兴趣的包裹 .

据我所知,默认情况下没有安装Xdebug,目前没有使用这个新的通用 php 公式使用自制程序安装Xdebug的机制 .

有没有人知道如何以合理的方式安装Xdebug,因为原来的 homebrew/php tap被弃用了?

2 回答

  • 9

    根据this answer,您可以使用 pecl install xdebug 进行安装 . 但是,较新版本的xdebug已经放弃了对PHP 5.6的支持 . 要安装支持php 5.6的旧版xdebug,请使用 pecl install xdebug-2.5.5

  • 3

    我找到了一个使用弃用的homebrew / php来安装php56-extensions的解决方案 .

    Install PHP Extension for PHP 5.6 on OSX with deprecated homebrew/php

    我希望我帮助过你

相关问题