linux下php擴展的安裝
1、php memcache擴展下載地址:http://pecl.php.net/package/memcache
[raykaeso@web ~]$ wget http://pecl.php.net/get/memcache-2.2.7.tgz
2、解壓安裝並進入memcache目錄
[raykaeso@web ~]$ tar xzf memcache-2.2.7.tgz
[raykaeso@web ~]$ cd memcache-2.2.7
3、在memcache目錄下,生成configure配置文件
[raykaeso@web memcache-2.2.7]$ /usr/local/php/bin/phpize
Configuring for:
PHP Api Version: 20090626
Zend Mole Api No: 20090626
Zend Extension Api No: 220090626
[raykaeso@web memcache-2.2.7]$ ./configure –with-php-config=/usr/local/php/bin/php-config
[raykaeso@web memcache-2.2.7]$ make
注意:一定要用root用戶。
[root@web memcache-2.2.7]# make install
4、在php配置文件php.ini裡面載入memcache擴展
extension=memcache.so
5、查看phpinfo,memcache擴展是否載入
memcache
memcache Support enabled
Version 2.2.7
Linux下php安裝memcache擴展 - http://www.leixuesong.cn/375
⑵ linux 怎麼安裝php-mbstring
linux系統下php安裝mbstring擴展的二種方法:
第一種方法:
1、輸入命令:
使用/usr/local/php/bin/php -v #查看配置是否錯誤
使用php.info查看mbstring是否安裝成功。
⑶ 在linux伺服器上lamp環境中怎樣安裝php的擴展模塊
在linux系統中:我們是直接安裝mbstring擴展模塊的。
首先我們執行一個yum的搜索命令:
系統便會自動下載並安裝包了。之後詢問你是否安裝,輸入y,回車,安裝,完成!
然後重啟伺服器,如此,mb_strlen()函數就可用了。 本文屬追太陽原創文章