本文主要是介绍CentOS 下 php mcrypt擴展安裝_東波_新浪博客,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Centos下php-mcrypt 可以直接yum install安裝,但可能會遇上mcrypt和php 版本不匹配的問題.
像下面這樣:
NOTICE: PHP message: PHP Warning: PHP Startup: mcrypt: Unable to initialize module
Module compiled with module API=20090626
PHP compiled with module API=20100525
These options need to match
Module compiled with module API=20090626
PHP compiled with module API=20100525
These options need to match
如果想使用phpize安裝擴展又會遇到下面這個問題:
[root@ns root]# phpize
Cannot find config.m4.
Make sure that you run /usr/local/bin/phpize in the top level source directory of the module
正確的做法應該這樣:
1. 去下載你現在使用版本的php的源碼,并解壓.
2. 進入到php源碼的目錄下ext/mcrypt目標,執行 ./configure --with-php-config=/usr/bin/php-config
3. 執行make&make install
這樣就好了
这篇关于CentOS 下 php mcrypt擴展安裝_東波_新浪博客的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!