如何在 CentOS 6.2 上安裝 PHP mbstring

2022-08-30 09:39:43

如何在 CentOS 6.2 上用 PHP 安装 mbstring

我试过了:

$ sudo yum install php-mbstring

Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
 * base: mirror.net.cen.ct.gov
 * extras: centos.aol.com
 * updates: mirrors.seas.harvard.edu
Setting up Install Process
No package php-mbstring available.
Error: Nothing to do

但是没有找到任何软件包?


答案 1

请执行下列操作:

sudo nano /etc/yum.repos.d/CentOS-Base.repo

在该部分下,注释掉镜像列表行(在行前面放一个),然后在新行上写:updates#

baseurl=http://centos.intergenia.de/$releasever/updates/$basearch/

现在尝试:

yum install php-mbstring

(之后,您可能希望取消注释镜像列表并注释掉baseurl)


答案 2

如果你有cPanel托管,你可以使用Easy Apache通过shell来做到这一点。这些是步骤。

  1. 键入 Easy Apache Path键入 Easy Apache 的路径

    root@vps#### [~]# /scripts/easyapache

  2. 不要对“cPanel更新可用”说“是”。
  3. 继续浏览具有默认值的屏幕,直到到达“详尽选项列表”。
  4. 向下翻页,直到看到列出的 Mbstring 扩展名并选择它。
  5. 继续执行步骤并保存 Apache PHP 版本。

Apache和PHP现在将重建以包含mbstring扩展。等待该过程完成约10到30分钟。该过程完成后,您现在应该在phpinfo中看到Mbstring扩展。

有关更详细的步骤,请参阅使用 Easy Apache 安装 mbstring 扩展一文


推荐