mac1011 php报错 Use of undefined constant MCRYPT_RIJNDAEL_128
解决办法:安装mcrypt扩展
具体步骤:
1、打开命令行 安装mcrypt :brew install mcrypt
2、安装php-mcrypt扩展: brew install php55-mcrypt(安装自己的php对应的版本)
中间如果遇到错误,静下心来,认真读一下英文代码,都能解决
3、看一下扩展是否已经装好
php -m | grep mcrypt
php -i | grep mcrypt
4、复制mcrypt的配置到php扫描配置的目录
默认为--with-config-file-scan-dir=/Library/Server/Web/Config/php' 可以在phpinfo中Configure Command选项中找到
接下来把mcrypt的ini文件复制进去即可:
sudo mkdir -p /Library/Server/Web/Config/php
sudo cp /usr/local/etc/php/5.5/conf.d/ext-mcrypt.ini /Library/Server/Web/Config/php/ext-mcrypt.ini
或者
sudo ln -s /usr/local/etc/php/5.5/conf.d/ext-mcrypt.ini /Library/Server/Web/Config/php/ext-mcrypt.ini
最后:sudo apachectl restart即可
你也可以使用另一种方法安装:
http://jingyan.baidu.com/article/e3c78d644cf1ed3c4c85f5a8.html
以上就介绍了mac1011 php报错 Use of undefined constant MCRYPT_RIJNDAEL_128,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
上一篇: 怎么循环输入,来帮小弟我看看
推荐阅读
-
PHP运行出现Notice : Use of undefined constant 的完美解决方案分享
-
PHP运行出现Notice : Use of undefined constant 的解决办法
-
PHP运行出现Notice : Use of undefined constant 的解决办法
-
PHP运行出现Notice : Use of undefined constant 的完美解决方案
-
php提示 Notice: Use of undefined constant name
-
PHP错误Notice : Use of undefined constant 的完美解决方法
-
mac1011 php报错 Use of undefined constant MCRYPT_RIJNDAEL_128
-
oss 报错Use of undefined constant CURLOPT_CLOSEPOLICY
-
PHP 出错 Use of undefined constant prop_values - ass.
-
PHP运行出现Notice:Use of undefined constant的解决办法