我试图在amazon 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

我在google上搜索了很多选项,但没有为php 5.6定义任何选项。
我还在php.in i中启用了zend.multibyte(在phpinfo()中也验证了它)

最佳答案

因为已经安装了php5.6,所以添加mbstring支持的正确命令是
sudo yum install php56-mbstring

10-06 15:15