时间:2021-07-01 10:21:17 帮助过:30人阅读
cd php/ext/mcrypt
phpize
error:
No package libmcrypt available.
No package libmcrypt-devel available.
No package mcrypt available.
No package mhash available.
yum install epel-release //扩展包更新包
yum update //更新yum源
yum install libmcrypt libmcrypt-devel mcrypt mhash 就ok了
./configure
error
/Downloads/php-5.5.31/ext/mcrypt/mcrypt.c:283: 错误:‘PHP_FE_END’未声明(不在函数内)
解决方案
sed -i 's|PHP_FE_END|{NULL,NULL,NULL}|' ./*.csed -i 's|ZEND_MOD_END|{NULL,NULL,NULL}|' ./*.c
下一步:
./configure
makemake test // 可以省略
sudo make install
下一步:
make install 后, 我们就在 /usr/lib64/php/modules/ 里面看到 mcrypt.so
cd /etc/php.d/
sudo vi mcrypt.ini
extension=mcrypt.so
重启apache 看效果啦
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('').text(i)); }; $numbering.fadeIn(1700); }); });以上就介绍了centos65编译mcrypt,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。