在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
使用 yum install php-mcrypt 安装mcrypt扩展时会提示没有安装包 Setting up Install Process mcrypt 是加密扩展库,加载了它可以用他里面自带的22种加密解密算法 CentOS6 默认安装的是php5.3.2 默认的 redhat repos php中是没有 mcrypt 扩展的 Thanks for the report. We are not planning to ship mcrypt support for PHP. 解决方法: 从php 官网下载新的php 5.3 源码包后,解压到本地目录 #cd /ext/mcrypt #phpize 注意:如果报 -bash:phpize not Found 那么 yum install php-devel 就可以使phpize进行动态编译安装扩展 #./configure -with-php-config=/usr/sbin/php/bin/php-config #make && make install 出现: ---------------------------------------------------------------------- If you ever happen to want to link against installed libraries See any operating system documentation about shared libraries for Build complete. Installing shared extensions: /usr/lib64/php/modules/ # php -m ... libxml 再次查看 phpinfo ,可以看到mcrypt 扩展详情。 |
请发表评论