我按照网上一片文档来安装php5.6
文档这么写的
brew install php56 \
--without-snmp \
--without-apache \
--with-debug \
--with-fpm \
--with-intl \
--with-homebrew-curl \
--with-homebrew-libxslt \
--with-homebrew-openssl \
--with-imap \
--with-mysql \
--with-tidy
由于OSX已经自带了PHP环境,因此需要修改系统路径,优先运行brew安装的版本,在~/.bashrc里加入:
export PATH="/usr/local/bin:/usr/local/sbin:$PATH"
如果要安装新的php扩展,可以直接安装而不用每次重新编译php,所有的扩展可以通过
brew install php56-gearman php56-msgpack php56-memcache php56-memcached php56-mongo php56-phalcon php56-redis php56-xdebug
最后我安装完成后遇到了个问题 php -v
Module compiled with build ID=API20131226,NTS
PHP compiled with build ID=API20131226,NTS,debug
These options need to match
in Unknown on line 0
PHP Warning: PHP Startup: phalcon: Unable to initialize module
Module compiled with build ID=API20131226,NTS
PHP compiled with build ID=API20131226,NTS,debug
These options need to match
in Unknown on line 0
Warning: PHP Startup: phalcon: Unable to initialize module
Module compiled with build ID=API20131226,NTS
PHP compiled with build ID=API20131226,NTS,debug
These options need to match
in Unknown on line 0
PHP Warning: PHP Startup: redis: Unable to initialize module
Module compiled with build ID=API20131226,NTS
PHP compiled with build ID=API20131226,NTS,debug
These options need to match
in Unknown on line 0
Warning: PHP Startup: redis: Unable to initialize module
Module compiled with build ID=API20131226,NTS
PHP compiled with build ID=API20131226,NTS,debug
These options need to match
in Unknown on line 0
PHP Warning: PHP Startup: swoole: Unable to initialize module
Module compiled with build ID=API20131226,NTS
PHP compiled with build ID=API20131226,NTS,debug
These options need to match
in Unknown on line 0
Warning: PHP Startup: swoole: Unable to initialize module
Module compiled with build ID=API20131226,NTS
PHP compiled with build ID=API20131226,NTS,debug
These options need to match
in Unknown on line 0
PHP 5.6.29 (cli) (built: Mar 10 2017 01:58:37) (DEBUG)
Copyright (c) 1997-2016 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies
➜ ~
Session Restored
求教大神给解决一下。 头痛啊
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
这个提示是警告,应该不会影响php本身
可以使用
$ php -m查看已安装的扩展如果没有请一个一个安装
phalcon,redis,swoole这几个扩展没有安装吧?php -m看一下。命令
php -i | grep php.ini看一下你的php.ini文件里面是不是开启了这几个扩展.如果有先注释掉,然后php -v再看下。