首页 > 编程 > PHP > 正文

PHP JSON

2020-03-22 18:19:58
字体:
来源:转载
供稿:网友
json_encode 对变量进行 JSON 编码json_decode对 JSON 格式的字符串进行解码,转换为 PHP 变量 json_last_error 返回最后发生的错误
json_encode

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

string json_encode ( $html' target='_blank'>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
$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_string [,$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)

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表