环境配置

在 php5.2.0 及以上版本已经内置 JSON 扩展。

JSON 函数

phpdate转换为jsonPHP法式的JSON Node.js

函数描述json_encode对变量进行 JSON 编码json_decode对 JSON 格式的字符串进行解码,转换为 PHP 变量json_last_error返回末了发生的缺点

json_encode

PHP json_encode() 用于对变量进行 JSON 编码,该函数如果实行成功返回 JSON 数据,否则返回 FALSE 。

语法

string json_encode ( $value [, $options = 0 ] )

参数

value: 要编码的值。
该函数只对 UTF-8 编码的数据有效。

options:由以下常量组成的二进制掩码:JSON_HEX_QUOT, JSON_HEX_TAG, JSON_HEX_AMP, JSON_HEX_APOS, JSON_NUMERIC_CHECK,JSON_PRETTY_PRINT, JSON_UNESCAPED_SLASHES, JSON_FORCE_OBJECT

实例

以下实例演示了如何将 PHP 数组转换为 JSON 格式数据:

<?php $arr = array('a' => 1, 'b' => 2, 'c' => 3, 'd' => 4, 'e' => 5); echo json_encode($arr);?>

以上代码实行结果为:

{\"大众a\"大众:1,\"大众b\公众:2,\"大众c\公众:3,\"大众d\"大众:4,\"大众e\"大众:5}

以下实例演示了如何将 PHP 工具转换为 JSON 格式数据:

<?php class Emp { public $name = \"大众\公众; public $hobbies = \公众\公众; public $birthdate = \"大众\公众; } $e = new Emp(); $e->name = \"大众sachin\"大众; $e->hobbies = \"大众sports\"大众; $e->birthdate = date('m/d/Y h:i:s a', \"大众8/5/1974 12:20:03 p\"大众); $e->birthdate = date('m/d/Y h:i:s a', strtotime(\公众8/5/1974 12:20:03\"大众)); echo json_encode($e);?>

以上代码实行结果为:

{\"大众name\"大众:\公众sachin\"大众,\"大众hobbies\"大众:\"大众sports\"大众,\"大众birthdate\"大众:\公众08\/05\/1974 12:20:03 pm\"大众}

json_decode

PHP json_decode() 函数用于对 JSON 格式的字符串进行解码,并转换为 PHP 变量。

语法

mixed json_decode ($json [,$assoc = false [, $depth = 512 [, $options = 0 ]]])

参数

json_string: 待解码的 JSON 字符串,必须是 UTF-8 编码数据

assoc: 当该参数为 TRUE 时,将返回数组,FALSE 时返回工具。

depth: 整数类型的参数,它指定递归深度

options: 二进制掩码,目前只支持 JSON_BIGINT_AS_STRING 。

实例

以下实例演示了如何解码 JSON 数据:

<?php $json = '{\公众a\公众:1,\"大众b\公众:2,\"大众c\"大众:3,\公众d\"大众:4,\"大众e\"大众:5}'; var_dump(json_decode($json)); var_dump(json_decode($json, true));?>

以上代码实行结果为:

object(stdClass)#1 (5) { [\"大众a\"大众] => int(1) [\"大众b\"大众] => int(2) [\"大众c\公众] => int(3) [\公众d\"大众] => int(4) [\"大众e\公众] => int(5)}array(5) { [\公众a\"大众] => int(1) [\"大众b\公众] => int(2) [\公众c\公众] => int(3) [\"大众d\"大众] => int(4) [\"大众e\公众] => int(5)}