在 PHP 中启用 json_encode

Enable json_encode in PHP(在 PHP 中启用 json_encode)
本文介绍了在 PHP 中启用 json_encode的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有人可以建议如何在 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

这篇关于在 PHP 中启用 json_encode的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)