我正在尝试在亚马逊ec2服务器中安装mbstring模块,这是我收到的错误
命令运行"sudo yum install php-mbstring“
Error: php56-common conflicts with php-common-5.3.29-1.8.amzn1.x86_64
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest我在谷歌上搜索并尝试了许多选项,但没有为PHP5.6定义任何选项
我还在php.ini中启用了zend.multibyte (也在phpinfo()中进行了验证)
发布于 2015-11-11 20:57:29
由于您已经安装了php5.6,因此添加mbstring支持的正确命令是sudo yum install php56-mbstring
https://stackoverflow.com/questions/33649602
复制相似问题