search
HomeBackend DevelopmentPHP TutorialUsing JSON in PHP language and restoring json to array, json array_PHP tutorial

Use JSON in PHP language and restore json to array, json array

I have written a simple example of returning json data in php before. I just went online and suddenly found an article , also introduces json, which is quite detailed and worth reference. The content is as follows

Starting from version 5.2, PHP natively provides json_encode() and json_decode() functions, the former is used for encoding, and the latter is used for decoding.

1. json_encode()

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

Output

1 {"a":1,"b":2,"c":3,"d":4,"e":5}

Look at another example of object conversion:

1 2 3 4 5 6 $obj->body           = 'another post'; $obj->id             = 21; $obj->approved       = true; $obj->favorite_count = 1; $obj->status         = NULL; echo json_encode($obj);

Output

1 2 3 4 5 6 7 8 9 10 11 {    "body":"another post",      "id":21,      "approved":true,      "favorite_count":1,      "status":null  }

Since json only accepts utf-8 encoded characters, the parameters of json_encode() must be utf-8 encoded, otherwise you will get empty characters or null. When Chinese uses GB2312 encoding, or foreign languages ​​use ISO-8859-1 encoding, special attention should be paid to this point.

2. Index array and associative array

PHP supports two types of arrays, one is an indexed array that only stores "value" (value), and the other is an associative array that stores "name/value" (name/value) .

Since javascript does not support associative arrays, json_encode() only converts the indexed array to array format, and converts the associative array to object format.

For example, now there is an index array

1 2 3 $arr = Array('one''two''three');   echo json_encode($arr);

Output

1 ["one","two","three"]

If you change it to an associative array:

1 2 3 $arr = Array('1'=>'one''2'=>'two''3'=>'three');   echo json_encode($arr);

The output becomes

1 {"1":"one","2":"two","3":"three"}

Note that the data format has changed from "[]" (array) to "{}" (object).

If you need to force "index array" into "object", you can write like this

1 json_encode( (object)$arr );

or

1 json_encode ( $arr, JSON_FORCE_OBJECT );

3. Class conversion

The following is a PHP class:

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 class Foo {     const     ERROR_CODE = '404';     public    $public_ex 'this is public';     private   $private_ex 'this is private!';     protected $protected_ex 'this should be protected';     public function getErrorCode() {       return self::ERROR_CODE;     }   }

Now, perform json conversion on the instance of this class:

1 2 3 4 5 $foo new Foo;   $foo_json = json_encode($foo);   echo $foo_json;

The output result is

1 {"public_ex":"this is public"}

You can see that except for public variables (public), other things (constants, private variables, methods, etc.) are missing.

4. json_decode()

This function is used to convert json text into the corresponding PHP data structure. Here is an example:

1 2 3 4 5 $json '{"foo": 12345}';   $obj = json_decode($json);   print $obj->{'foo'}; // 12345

Normally, json_decode() always returns a PHP object, not an array. For example:

1 2 3 $json '{"a":1,"b":2,"c":3,"d":4,"e":5}';   var_dump(json_decode($json));

The result is to generate a PHP object:

1 2 3 4 5 6 7 8 9 10 object(stdClass)#1 (5) {     ["a"] => int(1)   ["b"] => int(2)   ["c"] => int(3)   ["d"] => int(4)   ["e"] => int(5)   }

If you want to force the generation of PHP associative array, json_decode() needs to add a parameter true:

1 2 3 $json '{"a":1,"b":2,"c":3,"d":4,"e":5}';     var_dump(json_decode($json,true));

The result is an associative array:

1 2 3 4 5 6 7 8 9 10 array(5) {      ["a"] => int(1)    ["b"] => int(2)    ["c"] => int(3)    ["d"] => int(4)    ["e"] => int(5)   }

5. Common errors of json_decode()

The following three ways of writing json are all wrong. Can you see where the error is?

1 2 3 4 5 $bad_json "{ 'bar': 'baz' }";   $bad_json '{ bar: "baz" }';   $bad_json '{ "bar": "baz", }';

Executing json_decode() on these three strings will return null and report an error.

The first error is that the json delimiter only allows the use of double quotes, not single quotes. The second mistake is that the "name" of the json name-value pair (the part to the left of the colon) must be used in double quotes under any circumstances. The third error is that you cannot add a trailing comma after the last value.

In addition, json can only be used to represent objects and arrays. If json_decode() is used on a string or value, null will be returned.

1 var_dump(json_decode("Hello World")); //null

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/941171.htmlTechArticleUsing JSON in PHP language and restoring json to array, json array before I wrote php to return json data A simple example, I just went online and suddenly found an article that also introduced json, and...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
VUE3怎么使用JSON编辑器VUE3怎么使用JSON编辑器May 12, 2023 pm 05:34 PM

1、先看看效果图,可以自行选择展示效果2、这是我在vue3项目中使用的JSON编辑器,首先引入第三方插件npminstalljson-editor-vue3yarnaddjson-editor-vue33、引入到项目中//导入模块importJsonEditorVuefrom&#39;json-editor-vue3&#39;//注册组件components:{JsonEditorVue},4、一般后端返回的是会将JSON转为String形式我们传给后端也是通过这种形式,就可以通

SpringBoot之Json的序列化和反序列化问题怎么解决SpringBoot之Json的序列化和反序列化问题怎么解决May 12, 2023 pm 04:07 PM

控制json序列化/反序列化1.@JsonIgnoreProperties的用法@JsonIgnoreProperties(value={"prop1","prop2"})用来修饰Pojo类,在序列化和反序列化的时候忽略指定的属性,可以忽略一个或多个属性.@JsonIgnoreProperties(ignoreUnknown=true)用来修饰Pojo类,在反序列化的时候忽略那些无法被设置的属性,包括无法在构造子设置和没有对应的setter方法.2.@Js

Java怎么调用接口获取json数据解析后保存到数据库Java怎么调用接口获取json数据解析后保存到数据库May 14, 2023 am 10:58 AM

Java调用接口获取json数据保存到数据库1.在yml文件中配置自己定义的接口URL//自己定义的JSON接口URLblacklist_data_url:接口URL2.在Controller中添加请求方法和路径/***@Title:查询*@Description:查询车辆的记录*@Author:半度纳*@Date:2022/9/2717:33*/@GetMapping("/Blacklist")publicvoidselectBlacklist(){booleana=imB

深入解析JWT(JSON Web Token)的原理及用法深入解析JWT(JSON Web Token)的原理及用法Jan 10, 2023 am 10:55 AM

本篇文章给大家带来了关于JWT的相关知识,其中主要介绍了什么是JWT?JWT的原理以及用法是什么?感兴趣的朋友,下面一起来看一下吧,希望对大家有帮助。

php输出json无法解析的原因和解决方法【总结】php输出json无法解析的原因和解决方法【总结】Mar 23, 2023 pm 04:35 PM

PHP作为一种常见的编程语言,在web开发中使用广泛,其与前端交互的方式也多种多样。其中,输出Json数据是一种常见的交互方式,但有时候会碰到Json无法解析的问题。为什么会出现无法解析的情况呢?下面列举了几个可能的原因。

java怎么校验json的格式是否符合要求java怎么校验json的格式是否符合要求May 15, 2023 pm 04:01 PM

JSONSchemaJSONSchema是用于验证JSON数据结构的强大工具,Schema可以理解为模式或者规则。JsonSchema定义了一套词汇和规则,这套词汇和规则用来定义Json元数据,且元数据也是通过Json数据形式表达的。Json元数据定义了Json数据需要满足的规范,规范包括成员、结构、类型、约束等。JSONSchema就是json的格式描述、定义、模板,有了他就可以生成任何符合要求的json数据json-schema-validator在java中,对json数据格式的校验,使用

php如何将xml转为json格式?3种方法分享php如何将xml转为json格式?3种方法分享Mar 22, 2023 am 10:38 AM

当我们处理数据时经常会遇到将XML格式转换为JSON格式的需求。PHP有许多内置函数可以帮助我们执行这个操作。在本文中,我们将讨论将XML格式转换为JSON格式的不同方法。

SpringBoot怎么返回Json数据格式SpringBoot怎么返回Json数据格式May 19, 2023 pm 11:49 PM

一、@RestController注解在SpringBoot中的Controller中使用@RestController注解即可返回JSON格式的数据。@RestController注解包含了@Controller和@ResponseBody注解。@ResponseBody注解是将返回的数据结构转换为JSON格式。@Target({ElementType.TYPE})@Retention(RetentionPolicy.RUNTIME)@Documented@Controller@Respons

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.