当我在Centos中安装mbstring时,我得到了以下错误消息。
# yum install php-mbstring
Loaded plugins: downloadonly, fastestmirror, refresh-packagekit, security
Setting up Install Process
Loading mirror speeds from cached hostfile
* base: mirror.vastspace.net
* epel: ftp.riken.jp
* extras: mirror.vastspace.net
* updates: mirror.vastspace.net
Resolving Dependencies
--> Running transaction check
---> Package php-mbstring.x86_64 0:5.3.3-40.el6_6 will be installed
--> Processing Dependency: php-common(x86-64) = 5.3.3-40.el6_6 for package:php-mbstring-5.3.3-40.el6_6.x86_64
--> Finished Dependency Resolution
Error: Package: php-mbstring-5.3.3-40.el6_6.x86_64 (updates)
Requires: php-common(x86-64) = 5.3.3-40.el6_6
Installed: php-common-5.4.35-1.el6.remi.x86_64 (@remi)
php-common(x86-64) = 5.4.35-1.el6.remi
Available: php-common-5.3.3-38.el6.x86_64 (base)
php-common(x86-64) = 5.3.3-38.el6
Available: php-common-5.3.3-40.el6_6.x86_64 (updates)
php-common(x86-64) = 5.3.3-40.el6_6
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest有人能告诉我怎么安装mbstring吗?
我的PHP版本:PHP5.4.35 (cli) (构建:2014年11月14日07:04:10)
谢谢你提前..。
发布于 2014-12-01 06:16:35
yum install php-mbstring --enablerepo=remi我使用此命令使用remi安装了php-mbstring。运行之后,需要重新启动Apache服务。
发布于 2018-03-20 07:38:31
要搜索PHP版本的正确MB-字符串,请尝试以下命令:
sudo yum list | egrep 'php' | grep 50根据您在服务器中安装的PHP的特定版本更改(50),此命令将显示与PHP版本相关的所有包。
此命令将显示:
ea-php50-php-mbstring.x86_64现在你可以安装与你的系统兼容的版本了,我希望它能对你有用。
https://stackoverflow.com/questions/27221430
复制相似问题