在 PHP 中启用 json_encode

2022-01-13 00:00:00 json encode centos php

有人可以建议如何在 PHP 中启用 json_encode 函数吗?

Could someone advise on how to enable the json_encode function in PHP?

我已经全新安装了 Centos 5.6,并且刚刚安装了 Virtualmin.

I have a clean install of Centos 5.6 and have just installed Virtualmin.

有人知道接下来要采取的步骤吗?

Does anyone know the next steps to take?

推荐答案

如 http://www.php.net/manual/en/json.requirements.php

要求

使用这些功能无需安装;它们是 PHP 核心的一部分.

There is no installation needed to use these functions; they are part of the PHP core.

只需 PHP >= 5.2.0

编辑:在评论中看到 还有这个

在 RHEL5/CentOS5 上添加 EPEL 存储库(http://fedoraproject.org/wiki/EPEL).

On RHEL5/CentOS5 add the EPEL repository (http://fedoraproject.org/wiki/EPEL).

之后,安装就很简单了:

After that, installation is as simple as:

sudo yum install php-pecl-json

不知道这是否适用于你的问题,我没有 Centos 服务器...

Don't know if this apply for your question, I don't have a Centos server...

对于 Ubuntu:

sudo aptitude install php5-json

相关文章