位置: 编程技术 - 正文

PHP:json_decode()的用法_JSON函数(php json)

编辑:rootadmin
json_decode

推荐整理分享PHP:json_decode()的用法_JSON函数(php json),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:php json,php json_pretty_print,php的json_encode,php jsondecode,php json_encode中文,php的json_encode,php的json_encode,php的json_encode,内容如对您有帮助,希望把文章链接给更多的朋友!

(PHP 5 >= 5.2.0, PECL json >= 1.2.0)

json_decode — 对 JSON 格式的字符串进行编码

说明 mixed json_decode ( string $json [, bool $assoc = false [, int $depth = [, int $options = 0 ]]] )

接受一个 JSON 格式的字符串并且把它转换为 PHP 变量

参数

json

待解码的 json string 格式的字符串。

This function only works with UTF-8 encoded data.

assoc

当该参数为 TRUE 时,将返回 array 而非 object 。

depth

User specified recursion depth.

options

Bitmask of JSON decode options. Currently only JSON_BIGINT_AS_STRING is supported (default is to cast large integers as floats)

返回值

Returns the value encoded in json in appropriate PHP type. Values true, false and null (case-insensitive) are returned as TRUE, FALSE and NULL respectively. NULL is returned if the json cannot be decoded or if the encoded data is deeper than the recursion limit.

范例

Example #1 json_decode() 的例子

<?php$json='{"a":1,"b":2,"c":3,"d":4,"e":5}';var_dump(json_decode($json));var_dump(json_decode($json,true));?> PHP:json_decode()的用法_JSON函数(php json)

以上例程会输出:

Example #2 Accessing invalid object properties

Accessing elements within an object that contain characters not permitted under PHP&#;s naming convention (e.g. the hyphen) can be accomplished by encapsulating the element name within braces and the apostrophe.

<?php$json='{"foo-bar":}';$obj=json_decode($json);print$obj->{'foo-bar'};//?>

Example #3 common mistakes using json_decode()

<?php//thefollowingstringsarevalidJavaScriptbutnotvalidJSON//thenameandvaluemustbeenclosedindoublequotes//singlequotesarenotvalid$bad_json="{'bar':'baz'}";json_decode($bad_json);//null//thenamemustbeenclosedindoublequotes$bad_json='{bar:"baz"}';json_decode($bad_json);//null//trailingcommasarenotallowed$bad_json='{bar:"baz",}';json_decode($bad_json);//null?>

Example #4 depth errors

<?php//Encodethedata.$json=json_encode(array(1=>array('English'=>array('One','January'),'French'=>array('Une','Janvier'))));//Definetheerrors.$constants=get_defined_constants(true);$json_errors=array();foreach($constants["json"]as$name=>$value){if(!strncmp($name,"JSON_ERROR_",)){$json_errors[$value]=$name;}}//Showtheerrorsfordifferentdepths.foreach(range(4,3,-1)as$depth){var_dump(json_decode($json,true,$depth));echo'Lasterror:',$json_errors[json_last_error()],PHP_EOL,PHP_EOL;}?>

以上例程会输出:

Example #5 json_decode() of large integers

<?php$json='';var_dump(json_decode($json));var_dump(json_decode($json,false,,JSON_BIGINT_AS_STRING));?>

以上例程会输出:

注释

Note:

The JSON spec is not JavaScript, but a subset of JavaScript.

Note:

In the event of a failure to decode, json_last_error() can be used to determine the exact nature of the error.

更新日志

版本 说明 5.4.0 The options parameter was added. 5.3.0 Added the optional depth. The default recursion depth was increased from to 5.2.3 The nesting limit was increased from to 5.2.1 Added support for JSON decoding of basic types.

参见

json_encode() - 对变量进行 JSON 编码 json_last_error() - 返回最后发生的错误

PHP:json_last_error()的用法_JSON函数 json_last_error(PHP5=5.3.0)json_last_error返回最后发生的错误说明intjson_last_error(void)如果有,返回JSON编码解码时最后发生的错误。参数此函数没有参数。返回值

PHP:json_last_error_msg()的用法_JSON函数 json_last_error_msg(PHP5=5.5.0)json_last_error_msgReturnstheerrorstringofthelastjson_encode()orjson_decode()call说明stringjson_last_error_msg(void)参数此函数没有参数。返回值Returnstheer

PHP:system()的用法_命令行函数 system(PHP4,PHP5)system执行外部程序,并且显示输出说明stringsystem(string$command[,int&$return_var])同C版本的system()函数一样,本函数执行command参数所指定的命令,

标签: php json

本文链接地址:https://www.jiuchutong.com/biancheng/284697.html 转载请保留说明!

上一篇:PHP:json_encode()的用法_JSON函数(php jsondecode)

下一篇:PHP:json_last_error()的用法_JSON函数

  • 进口洋酒能存放多少年
  • 个体工商户应如何购买社会保险公积金
  • 什么情况下纳税人和负税人一致
  • 个体工商户开普票限额最新规定
  • 研发费用属于哪个费用
  • 劳务公司开出发票3年未收到钱
  • 资信证明好开吗
  • 本年利润期末一般有余额吗
  • 会计和税法折旧年限不同如何计算终结期现金净流量
  • 契税印花税计税方法
  • 房产税按租金收入
  • 怎么处理善意取得的大头小尾发票?
  • 土地不动产登记证办理流程
  • 开票与实际收款不一致有什么风险
  • 不需要缴纳企业所得税的企业类型
  • 捐赠允诺是否有法律约束力?
  • 食用盐适用的增值税税率
  • 报销差旅费必须要车票吗
  • 工程施工余额怎么处理
  • 房子报废
  • 视同销售财税处理怎么做?
  • 医疗保险中的大病保险怎么报销
  • 清除cmos有什么后果
  • 桌面图标删不掉怎么回事
  • 增值税已认证抵扣
  • php怎么爬数据
  • 在anaconda下安装python
  • 简述税款征收的基本原则
  • css 宽度 自适应 占满
  • php下载文件夹
  • php获取目录所有文件
  • react.strictmode
  • 废钢收购无进项怎么处理
  • resnet+unet
  • 微信小程序设计规范(官方)文档
  • axios用法示例
  • Laravel 5.3 学习笔记之 安装
  • 企业接受的非货币性投资按照 计入实收资本
  • python爬虫入门教程
  • mongodb 分组计数
  • mongodb时序
  • 债权投资利息收入调增还是调减
  • 往来款项的含义
  • 征地拆迁的费用可以作为资产吗
  • 残疾人工资加计扣除包括社保吗
  • 售后回租服务费开票
  • 预付款预缴如何做账
  • 其他收益会计科目核算什么
  • 实收资本增减变化为负数的原因
  • 记账凭证结算方式没出来
  • 以前年度少结转成本怎么办
  • 医院收费票据可以入账吗
  • 申报系统中印花税报表怎么填
  • 话费充值发票可以开公司抬头吗
  • 软件测试费用明细
  • 支付宝如何支付医保费用
  • 讲课费需要提供发票吗
  • 公司不做账会怎样?
  • 建造合同收入
  • win8.1 开机进桌面
  • microsoft window vista
  • solaris挂载nfs
  • centos为什么没有桌面
  • win7系统打印服务怎么开启
  • win7主要有哪些内容
  • win10大更新2020
  • win7空间不足
  • javascript中声明变量的关键字
  • unity3d的
  • 安卓无法更新软件
  • python变量与数据类型
  • js金额加减
  • jq获取节点属性
  • Android之fill_parent和wrap_content
  • 小程序河南税务局
  • 国家税务局令第16号文
  • 外省车险保单,有何不利的事
  • 北京国家税务局总局官网
  • 13%增值税发票怎么抵扣
  • 怎么修改税局预留号码
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设