我已经重新编译了 PHP 5.4.13(这不是 Mac OS 10.8 附带的 PHP 安装,这是我在 Mac 上升级 PHP 所做的构建),其中包含一些新模块,如 geoIP、WDDX 和其他一些扩展,但它的当我执行 php -m 时没有出现,它显示了相同的旧版本。
即使我执行 php -v ,它也会显示旧的构建详细信息,例如构建日期和构建时间。意味着我的 make install 真的没有用。但是当我运行 make install 时没有错误或什么。
我的 ./configure 命令是
./configure
--prefix=/usr \
--mandir=/usr/share/man/ \
--infodir=/usr/share/info/ \
--extension-dir=ext \
--enable-dependency-tracking \
--sysconfdir=/private/etc/ \
--with-apxs2=/usr/sbin/apxs \
--enable-cli \
--with-config-file-path=/etc/ \
--with-libxml \
--with-openssl \
--with-kerberos=/usr/ \
--with-zlib \
--enable-bcmath \
--with-bz2 \
--enable-calendar \
--disable-cgi \
--with-curl \
--enable-dba \
--enable-ndbm=/usr/ \
--enable-exif \
--enable-fpm \
--enable-ftp \
--with-gd \
--with-freetype-dir=/BinaryCache/apache_mod_php/apache_mod_php-78~13/Root/usr/local \
--with-jpeg-dir=/BinaryCache/apache_mod_php/apache_mod_php-78~13/Root/usr/local \
--with-png-dir=/BinaryCache/apache_mod_php/apache_mod_php-78~13/Root/usr/local \
--enable-gd-native-ttf \
--with-icu-dir=/usr/ \
--with-iodbc=/usr/ \
--with-ldap=/usr/ \
--with-ldap-sasl=/usr/ \
--with-libedit=/usr/ \
--enable-mbstring \
--enable-mbregex \
--with-mysql=mysqlnd \
--with-mysqli=mysqlnd \
--without-pear \
--with-pdo-mysql=mysqlnd \
--with-mysql-sock=/var/mysql/mysql.sock \
--with-readline=/usr/ \
--enable-shmop \
--with-snmp=/usr/ \
--enable-soap \
--enable-sockets \
--enable-sqlite-utf8 \
--enable-suhosin \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--with-tidy \
--enable-wddx \
--with-xmlrpc \
--with-iconv-dir=/usr/ \
--with-xsl=/usr/ \
--enable-zend-multibyte \
--enable-zip \
--with-pcre-regex=/usr/ \
--with-pgsql=/usr/ \
--with-pdo-pgsql=/usr/ \
--with-geoip=geoip
这是我的 php -m 输出
[PHP Modules]
Core
ctype
date
dom
ereg
fileinfo
filter
hash
iconv
json
libxml
pcre
PDO
pdo_sqlite
Phar
posix
Reflection
session
SimpleXML
SPL
sqlite3
standard
tokenizer
xml
xmlreader
xmlwriter
[Zend 模块]
这就是php必须说的,
/opt/local/bin/php
这就是 whereis php 所说的,
/usr/bin/php
有任何想法吗?