天天看点

PHP Memcache扩展安装配置步骤

一、phpize是干嘛的?

phpize是什么东西呢?php官方的说明:

<a href="http://php.net/manual/en/install.pecl.phpize.php" target="_blank">http://php.net/manual/en/install.pecl.phpize.php</a>

phpize是用来扩展php扩展模块的,通过phpize可以建立php的外挂模块

比如你想在原来编译好的php中加入memcached或者ImageMagick等扩展模块,可以使用phpize,通过以下几步工作。

二、如何使用phpize?

当php编译完成后,php的bin目录下会有phpize这个脚本文件。在编译你要添加的扩展模块之前,执行以下phpize就可以了;

比如现在想在php中加入memcache扩展模块:我们要做的只是如下几步

————————————————————————

tar zxvf memcache-2.2.5.tgz

cd memcache-2.2.5/

/usr/local/webserver/php/bin/phpize

./configure –with-php-config=/usr/local/webserver/php/bin/php-config

make

make install

注意./configure 后面可以指定的是php-config文件的路径

这样编译就完成了,还需要做的是在php.ini文件中加入extension值

配置步骤:

在php.ini文件配置:

user_dir =

; Directory in which the loadable extensions (modules) reside. 在这里加入下面两句:

extension_dir = "/home1/ucdesk/php-fcgi/lib/php/extensions/no-debug-non-zts-20060613/"

extension = memcache.so

本文转自 freeterman 51CTO博客,原文链接:http://blog.51cto.com/myunix/1094794,如需转载请自行联系原作者