php源码:https://github.com/php/php-src
我的red-hat上的php-config位于/usr/bin/php-config

去官网下载对应版本的php源码

在php-src-xxx/ext/mcrypt下
phpize
./configure -with-php-config=/usr/bin/php-config
成功之后会提示
Installing shared extensions: /usr/lib64/php/modules/
将/usr/lib64/php/modules/mcrypt.so加入php.ini
查看是否添加扩展 php -m

如果不成功。
可能需要安装
libmcryptmhashmcrypt
编译和安装都是一样的。下载对应的包

tar -zxvf xxx
cd xxx
./configure make && make install