對這文章發表回應
發表限制: 非會員 可以發表
發表者: 冷日 發表時間: 2010/11/18 4:18:23
來分享一下冷日在CentOS5上安裝bcompiler的方法:
1.安裝bzip
2.安裝php-pear
3.安裝php-dev
4.安裝bcompiler
5.編輯php.ini
在最後面加入一行如下
6.重新啟動Apache
7.檢查bcompiler是否有順利掛載成module
應該要看到以下這一行
8.也可以寫一頁phpinfo來檢查
應該要看到:
剩下的,就可以參考上面前輩所寫得Code來替你的php做壓縮加密啦!
1.安裝bzip
yum install bzip2* -y
2.安裝php-pear
yum install php-pear* -y
3.安裝php-dev
yum install php-devel -y
4.安裝bcompiler
pecl install channel://pecl.php.net/bcompiler-0.8
5.編輯php.ini
vi /etc/php.ini
在最後面加入一行如下
extension=bcompiler.so
6.重新啟動Apache
/etc/rc.d/init.d/httpd restart
7.檢查bcompiler是否有順利掛載成module
php -m |grep bcompiler
應該要看到以下這一行
bcompiler
8.也可以寫一頁phpinfo來檢查
應該要看到:
bcompiler
bcompiler support | enabled |
---|---|
bcompiler version | 0.8s |
current bytecode version | 0.14 |
can parse bytecode version | 0.7, 0.9, 0.11, 0.12, 0.14 |
剩下的,就可以參考上面前輩所寫得Code來替你的php做壓縮加密啦!