Home php教程 php手册 php中json

php中json

Jun 06, 2016 pm 07:42 PM
encode json php main function

一、json_encode() 该函数主要用来将数组和对象,转换为json式。先看一个数组转换的例子: $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 } 再看一个对

一、json_encode()

该函数主要用来将数组和对象,转换为json格式。先看一个数组转换的例子:

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

结果为

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

再看一个对象转换的例子:

<code>
  <span>$obj</span><span>-</span><span>></span><span>body</span>           <span>=</span> <span>'another post'</span><span>;</span>
  
  <span>$obj</span><span>-</span><span>></span><span>id</span>             <span>=</span> <span>21</span><span>;</span>
  
  <span>$obj</span><span>-</span><span>></span><span>approved</span>       <span>=</span> <span>true</span><span>;</span>
  
  <span>$obj</span><span>-</span><span>></span><span>favorite_count</span> <span>=</span> <span>1</span><span>;</span>
  
  <span>$obj</span><span>-</span><span>></span><span>status</span>         <span>=</span> <span>NULL</span><span>;</span>
  
  <span>echo</span> <span>json_encode<span>(</span></span><span>$obj</span><span>)</span><span>;</span>
  
</code>
Copy after login

结果为

<code>
  <span>{</span>
    <span>"body"</span><span>:</span><span>"another post"</span><span>,</span>
  
    <span>"id"</span><span>:</span><span>21</span><span>,</span>
  
    <span>"approved"</span><span>:</span><span>true</span><span>,</span>
  
    <span>"favorite_count"</span><span>:</span><span>1</span><span>,</span>
  
    <span>"status"</span><span>:</span><span>null</span>
  <span>}</span> 
  
</code>
Copy after login

由于json只接受utf-8编码的字符,所以json_encode()的参数必须是utf-8编码,否则会得到空字符或者null。当中文使用GB2312编码,或者外文使用ISO-8859-1编码的时候,这一点要特别注意。

二、索引数组和关联数组

PHP支持两种数组,一种是只保存"值"(value)的索引数组(indexed array),另一种是保存"名值对"(name/value)的关联数组(associative array)。

由于javascript不支持关联数组,所以json_encode()只将索引数组(indexed array)转为数组格式,而将关联数组(associative array)转为对象格式。

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

<code>
  <span>$arr</span> <span>=</span> <span>Array</span><span>(</span><span>'one'</span><span>,</span> <span>'two'</span><span>,</span> <span>'three'</span><span>)</span><span>;</span>
  
  <span>echo</span> <span>json_encode<span>(</span></span><span>$arr</span><span>)</span><span>;</span>
  
</code>
Copy after login

结果为:

<code>
  <span>[</span><span>"one"</span><span>,</span><span>"two"</span><span>,</span><span>"three"</span><span>]</span> 
  
</code>
Copy after login

如果将它改为关联数组:

<code>
  <span>$arr</span> <span>=</span> <span>Array</span><span>(</span><span>'1'</span><span>=</span><span>></span><span>'one'</span><span>,</span> <span>'2'</span><span>=</span><span>></span><span>'two'</span><span>,</span> <span>'3'</span><span>=</span><span>></span><span>'three'</span><span>)</span><span>;</span>
   
  <span>echo</span> <span>json_encode<span>(</span></span><span>$arr</span><span>)</span><span>;</span>
    
</code>
Copy after login

结果就变了:

<code>
  <span>{</span><span>"1"</span><span>:</span><span>"one"</span><span>,</span><span>"2"</span><span>:</span><span>"two"</span><span>,</span><span>"3"</span><span>:</span><span>"three"</span><span>}</span> 
  
</code>
Copy after login

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

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

<code>
  <span>json_encode<span>(</span></span> <span>(</span>object<span>)</span><span>$arr</span> <span>)</span><span>;</span>
  
</code>
Copy after login

或者

<code>
  json_encode <span>(</span> <span>$arr</span><span>,</span> <span>JSON_FORCE_OBJECT</span> <span>)</span><span>;</span>
  
</code>
Copy after login

三、类(class)的转换

下面是一个PHP的类:

<code>
  <span>class</span> <span>Foo</span> <span>{</span>
  
    <span>const</span>     <span>ERROR_CODE</span> <span>=</span> <span>'404'</span><span>;</span>
  
    <span>public</span>    <span>$public_ex</span> <span>=</span> <span>'this is public'</span><span>;</span>
  
    <span>private</span>   <span>$private_ex</span> <span>=</span> <span>'this is private!'</span><span>;</span>
  
    <span>protected</span> <span>$protected_ex</span> <span>=</span> <span>'this should be protected'</span><span>;</span> 
   
    <span>public</span> <span>function</span> <span>getErrorCode<span>(</span></span><span>)</span> <span>{</span>
  
      <span>return</span> self<span>:</span><span>:</span><span>ERROR_CODE</span><span>;</span>
  
    <span>}</span>
  
  <span>}</span>
  
</code>
Copy after login

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

<code>
  <span>$foo</span> <span>=</span> <span>new</span> <span>Foo</span><span>;</span>
  
  <span>$foo_json</span> <span>=</span> <span>json_encode<span>(</span></span><span>$foo</span><span>)</span><span>;</span>
  
  <span>echo</span> <span>$foo_json</span><span>;</span>
  
</code>
Copy after login

输出结果是

<code>
  <span>{</span><span>"public_ex"</span><span>:</span><span>"this is public"</span><span>}</span> 
  
</code>
Copy after login

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

四、json_decode()

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

<code>
  <span>$json</span> <span>=</span> <span>'{"foo": 12345}'</span><span>;</span>
   
  <span>$obj</span> <span>=</span> <span>json_decode<span>(</span></span><span>$json</span><span>)</span><span>;</span>
  
  <span>print</span> <span>$obj</span><span>-</span><span>></span><span>{</span><span>'foo'</span><span>}</span><span>;</span><span> // 12345
</span>  
</code>
Copy after login

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

<code>
  <span>$json</span> <span>=</span> <span>'{"a":1,"b":2,"c":3,"d":4,"e":5}'</span><span>;</span>
   
  <span>var_dump<span>(</span></span><span>json_decode<span>(</span></span><span>$json</span><span>)</span><span>)</span><span>;</span>
  
</code>
Copy after login

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

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

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

<code>
  <span>$json</span> <span>=</span> <span>'{"a":1,"b":2,"c":3,"d":4,"e":5}'</span><span>;</span>
   
  <span>var_dump<span>(</span></span><span>json_decode<span>(</span></span><span>$json</span><span>,</span><span>true</span><span>)</span><span>)</span><span>;</span>
  
</code>
Copy after login

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

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

五、json_decode()的常见错误

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

<code>
  <span>$bad_json</span> <span>=</span> <span>"{ 'bar': 'baz' }"</span><span>;</span>
  
  <span>$bad_json</span> <span>=</span> <span>'{ bar: "baz" }'</span><span>;</span>
  
  <span>$bad_json</span> <span>=</span> <span>'{ "bar": "baz", }'</span><span>;</span>
  
</code>
Copy after login

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

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

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

<code>
  <span>var_dump<span>(</span></span><span>json_decode<span>(</span></span><span>"Hello World"</span><span>)</span><span>)</span><span>;</span><span> //null</span></code>
Copy after login


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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 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)

Hot Topics

Java Tutorial
1665
14
PHP Tutorial
1269
29
C# Tutorial
1249
24
PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

The Enduring Relevance of PHP: Is It Still Alive? The Enduring Relevance of PHP: Is It Still Alive? Apr 14, 2025 am 12:12 AM

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP vs. Python: Understanding the Differences PHP vs. Python: Understanding the Differences Apr 11, 2025 am 12:15 AM

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

PHP and Python: Code Examples and Comparison PHP and Python: Code Examples and Comparison Apr 15, 2025 am 12:07 AM

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

PHP vs. Other Languages: A Comparison PHP vs. Other Languages: A Comparison Apr 13, 2025 am 12:19 AM

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP and Python: Different Paradigms Explained PHP and Python: Different Paradigms Explained Apr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

See all articles