####memcache

wget http://pecl.php.net/get/memcache-2.2.7.tgz
tar xf memcache-2.2.7.tgz
cd memcache-2.2.7
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make
make install

####memcached

wget http://pecl.php.net/get/memcached-2.1.0.tgz
tar xf memcached-2.1.0.tgz
cd memcached-2.1.0/
/usr/local/php/bin/phpize
./configure --enable-memcached --with-php-config=/usr/local/php/bin/php-config --with-libmemcached-dir=/usr/local/libmemcached
make
make install

 

 

###phalcon


下载zip包 https://github.com/phalcon/cphalcon
unzip cphalcon-master.zip
cd /root/cphalcon-master/build/php5/64bits
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make
make install

###bcmath(其它扩展主要安装方法)

cd 到扩展目录下进行编译


cd /root/php-xx/ext/bcmath
./configure --with-php-config=/usr/local/php/bin/php-config
make
make install

 

相关文章:

  • 2022-12-23
  • 2021-12-27
  • 2022-03-05
  • 2021-10-02
  • 2022-12-23
  • 2021-12-18
猜你喜欢
  • 2021-12-18
  • 2021-12-21
  • 2022-03-08
  • 2021-10-17
  • 2022-12-23
相关资源
相似解决方案