linux下php安装扩展组件(个人工作笔记系列之php)
系统环境:CentOS release 6.2 (Final)
软件版本:php-5.3.13
php安装的编译参数:
./configure--prefix=/usr/local/php5\--with-config-file-path=/usr/local/php5/etc\--with-mysql=/usr/local/mysql-5.5.23/\--with-mysqli=mysqlnd\--with-pdo-mysql\--with-apxs2=/usr/local/apache2/bin/apxs\--with-iconv-dir\--with-gd\--with-jpeg-dir\--with-png-dir\--with-zlib\--with-freetype-dir\--with-pcre-dir=/usr/local/pcre-8.30\--with-bz2\--with-openssl\--with-curl\--with-curlwrappers\--with-libxml-dir=/usr\--with-mhash\--with-xmlrpc\--with-mcrypt\--enable-pcntl\--enable-sockets\--enable-gd-native-ttf\--enable-mbregex\--enable-sysvsem\--enable-shmop\--enable-bcmath\--enable-safe-mode\--enable-pdo\--enable-xml\--enable-soap\--enable-inline-optimization\--enable-zip\--enable-mbstring\--disable-rpath\--enable-maintainer-zts\
:
1. 扩展组件memcached
下载memcached-2.2.0.tgz到本地,解压
tar-xfmemcached-2.2.0.tgzcdmemcached-2.2.0/usr/local/php5/bin/phpize./configure--with-php-config=/usr/local/php5/bin/php-configmake&&makeinstallmv/usr/local/php5/lib/php/extensions/no-debug-zts-20090626/memcached.so/usr/local/php5/ext/编辑php.ini添加extension="memcached.so"
2. 扩展组件taint-1.0.0.tgz
下载taint-1.0.0.tgz到本地,解压tar-xftaint-1.0.0.tgzcdtaint-1.0.0/usr/local/php5/bin/phpize./configure--with-php-config=/usr/local/php5/bin/php-configmake&&makeinstallmv/usr/local/php5/lib/php/extensions/no-debug-zts-20090626/taint.so/usr/local/php5/ext/编辑php.ini添加extension="taint.so"
3. 扩展组件mcrypt
进入到php源码包的扩展模块mcrypt源码路径下cd/usr/local/src/php-5.3.13/ext/mcrypt//usr/local/php5/bin/phpize./configure--with-php-config=/usr/local/php5/bin/php-configmake&&makeinstallmv/usr/local/php5/lib/php/extensions/no-debug-zts-20090626/mcrypt.so/usr/local/php5/ext/编辑php.ini添加extension="mcrypt.so"
4. 扩展组件mbstring
进入到php源码包的扩展模块mbstring源码路径下cd/usr/local/src/php-5.3.13/ext/mbstring//usr/local/php5/bin/phpize./configure--with-php-config=/usr/local/php5/bin/php-configmake&&makeinstallmv/usr/local/php5/lib/php/extensions/no-debug-zts-20090626/mbstring.so/usr/local/php5/ext/编辑php.ini添加extension="mbstring.so"
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。