Home Backend Development PHP Tutorial Detailed explanation and examples of php json_encode and json_decode

Detailed explanation and examples of php json_encode and json_decode

Apr 13, 2018 am 11:25 AM
decode encode javascript

The content shared with you in this article is about the detailed explanation and examples of php json_encode and json_decode. It has a certain reference value. Friends in need can refer to it.

This article mainly This article introduces the detailed explanation and examples of php json_encode and json_decode. Friends who need it can refer to the following article link: http://www.jb51 .net/article/99816.htm

## 1. json_encode()

This function is mainly used to convert arrays and objects into json format. Let’s first look at an example of array conversion:

$arr = array ('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5);  
echo json_encode($arr); 
Copy after login

The result is

{"a":1,"b":2,"c":3,"d":4,"e":5} <br>
Copy after login

and then look at an example of object conversion:

$obj->body      = &#39;another post&#39;;  
$obj->id       = 21;  
$obj->approved    = true;  
$obj->favorite_count = 1;  
$obj->status     = NULL;  
echo json_encode($obj); 
Copy after login

The result is


##
{  "body":"another post",  
  "id":21,  
  "approved":true,  
  "favorite_count":1,  
  "status":null  }
Copy after login

Since json only accepts utf-8 encoded characters, json_encode The parameters of () must be UTF-8 encoded, otherwise you will get null 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 to save only "value" (value ), and the other is an associative array that stores name/value pairs.

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.

比如,现在有一个索引数组



$arr = Array(&#39;one&#39;, &#39;two&#39;, &#39;three&#39;);  
echo json_encode($arr); 
Copy after login

结果为:

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

如果将它改为关联数组:



$arr = Array(&#39;1&#39;=>&#39;one&#39;, &#39;2&#39;=>&#39;two&#39;, &#39;3&#39;=>&#39;three&#39;);
echo json_encode($arr); 
Copy after login

结果就变了:

{"1":"one","2":"two","3":"three"}
Copy after login

注意,数据格式从"[]"(数组)变成了"{}"(对象)。

如果你需要将"索引数组"强制转化成"对象",可以这样写

json_encode( (object)$arr ); 
Copy after login



或者



json_encode ( $arr, JSON_FORCE_OBJECT ); 
Copy after login


三、类(class)的转换

下面是一个PHP的类:

class Foo {  
    const   ERROR_CODE = &#39;404&#39;;  
    public  $public_ex = &#39;this is public&#39;;  
    private  $private_ex = &#39;this is private!&#39;;  
    protected $protected_ex = &#39;this should be protected&#39;;
   
    public function getErrorCode() {  
      return self::ERROR_CODE;  
    }  
  }
Copy after login



现在,对这个类的实例进行json转换:



$foo = new Foo;  
$foo_json = json_encode($foo);  
echo $foo_json; 
Copy after login

输出结果是

{"public_ex":"this is public"}
Copy after login



可以看到,除了公开变量(public),其他东西(常量、私有变量、方法等等)都遗失了。


四、json_decode()

该函数用于将json文本转换为相应的PHP数据结构。下面是一个例子:

$json = &#39;{"foo": 12345}&#39;;
   
$obj = json_decode($json);  
print $obj->{&#39;foo&#39;}; // 12345 
Copy after login

通常情况下,json_decode()总是返回一个PHP对象,而不是数组。比如:

$json = &#39;{"a":1,"b":2,"c":3,"d":4,"e":5}&#39;;
var_dump(json_decode($json));
Copy after login



结果就是生成一个PHP对象:



object(stdClass)#1 (5) {  
  ["a"] => int(1)    ["b"] => int(2)    ["c"] => int(3)    ["d"] => int(4)    ["e"] => int(5)  
} 
Copy after login

如果想要强制生成PHP关联数组,json_decode()需要加一个参数true:

$json = &#39;{"a":1,"b":2,"c":3,"d":4,"e":5}&#39;;
 
var_dump(json_decode($json,true)); 
Copy after login

结果就生成了一个关联数组:

array(5) {  
   ["a"] => int(1)     ["b"] => int(2)     ["c"] => int(3)     ["d"] => int(4)     ["e"] => int(5)  
} 
Copy after login


五、json_decode()的常见错误

下面三种json写法都是错的,你能看出错在哪里吗?

$bad_json = "{ &#39;bar&#39;: &#39;baz&#39; }";  
$bad_json = &#39;{ bar: "baz" }&#39;;  
$bad_json = &#39;{ "bar": "baz", }&#39;; 
Copy after login



对这三个字符串执行json_decode()都将返回null,并且报错。

第一个的错误是,json的分隔符(delimiter)只允许使用双引号,不能使用单引号。第二个的错误是,json名值对的"名"(冒号左边的部分),任何情况下都必须使用双引号。第三个的错误是,最后一个值之后不能添加逗号(trailing comma)。

另外,json只能用来表示对象(object)和数组(array),如果对一个字符串或数值使用json_decode(),将会返回null。

var_dump(json_decode("Hello World")); //null
Copy after login

感谢阅读,希望能帮助到大家

相关推荐:

php中的json_encode()和json_decode()函数详解

PHP中json_decode与json_encode使用方法分享


The above is the detailed content of Detailed explanation and examples of php json_encode and json_decode. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

Advanced usage and skill sharing of Oracle DECODE function Advanced usage and skill sharing of Oracle DECODE function Mar 08, 2024 am 10:30 AM

The DECODE function in Oracle database is a very commonly used function, which can select among a set of values ​​based on the result value of an expression. The syntax of the DECODE function is as follows: DECODE(expression, search_value1, result1, search_value2, result2,..., default_result) where expression is the expression to be compared, s

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

Oracle DECODE function detailed explanation and usage examples Oracle DECODE function detailed explanation and usage examples Mar 08, 2024 pm 03:51 PM

The DECODE function in Oracle is a conditional expression that is often used to return different results based on different conditions in query statements. This article will introduce the syntax, usage and sample code of the DECODE function in detail. 1. DECODE function syntax DECODE(expr,search1,result1[,search2,result2,...,default]) expr: the expression or field to be compared. search1,

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

How to use insertBefore in javascript How to use insertBefore in javascript Nov 24, 2023 am 11:56 AM

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

See all articles