search
HomeBackend DevelopmentPHP ProblemHow to convert JSON data into array object in php

During the development process, we often involve scenarios of converting JSON data into arrays or object arrays. As a popular server-side programming language, PHP also provides convenient methods to perform conversion operations when processing JSON data. This article uses an example to demonstrate how to convert JSON data into an array of array objects.

Prerequisite knowledge

Before explaining the specific operations, you need to understand some basic PHP knowledge.

JSON

JSON (short for JavaScript Object Notation) is a lightweight data exchange format. It represents data as key-value pairs or array format. JSON data can be represented using objects and arrays in JavaScript.

Array in PHP

In PHP, an array is a structure that collects data. It can store different types of values. In an array, each value has a key associated with it, and the key can be any string or integer.

stdClass object in PHP

stdClass object is a very simple object model in PHP. It can dynamically allocate properties as needed. In addition, it can also convert objects into arrays or Arrays are converted to objects, which is useful for working with JSON data.

Convert Json to Array

Let’s first take a look at how to convert JSON data into a PHP array. PHP provides a built-in function json_decode(), which can convert a JSON string into a PHP array. The usage of this function is as follows:

mixed json_decode ( string $json [, bool $assoc = FALSE [, int $depth = 512 [, int $options = 0 ]]] )

Among them, $json represents the JSON string that needs to be converted; $assoc represents whether to return an associative array (the default is false, which means returning an object); $depth represents the maximum recursion depth (default is 512); $options represents conversion options (default is 0).

Here is a simple example, assuming we have a file containing JSON datadata.json:

{
    "name": "Typechoer",
    "age": 25,
    "gender": "male",
    "skills": ["PHP", "JavaScript", "CSS"]
}

We can use the following code to read the JSON data and It is converted into a PHP array:

$json = file_get_contents('data.json');
$data = json_decode($json, true);
print_r($data);

The output result is as follows:

Array
(
    [name] => Typechoer
    [age] => 25
    [gender] => male
    [skills] => Array
        (
            [0] => PHP
            [1] => JavaScript
            [2] => CSS
        )
)

As you can see, we have implemented the operation of converting JSON data into a PHP array, and the type of data remains unchanged.

Convert Json to object array

In addition to converting JSON data into a PHP array, you can also convert it into an object array. An object array is an array of stdClass objects, where each object represents an element. We don't need to care about the field names of the object, we only need to access them through the properties of the object. The following is a method to convert JSON data into an array of PHP objects:

json_decode(string, false, 512, JSON_OBJECT_AS_ARRAY);

As you can see, we only need to set the $assoc parameter to false, set the $options parameter to JSON_OBJECT_AS_ARRAY, and then use the json_decode() function Just perform the conversion operation.

Similarly based on the above JSON data, we can use the following code to convert it into a PHP object array:

$json = file_get_contents('data.json');
$data = json_decode($json, false, 512, JSON_OBJECT_AS_ARRAY);
print_r($data);

The output result is as follows:

Array
(
    [name] => Typechoer
    [age] => 25
    [gender] => male
    [skills] => Array
        (
            [0] => PHP
            [1] => JavaScript
            [2] => CSS
        )
)

Since an object array is used , so we can use object properties to access data, for example:

echo $data[0]->name; // Typechoer
echo $data[0]->skills[2]; // CSS

Json converted into a multi-dimensional array

If the JSON data has sub-objects or arrays nested in it, then converted into a PHP array or object When using an array, we can still maintain the multi-dimensional nature of the data.

The following is an example of JSON data with a nested structure:

{
    "account": {
        "name": "Tom",
        "age": 28
    },
    "courses": [
        {
            "name": "PHP",
            "hour": 80
        },
        {
            "name": "JavaScript",
            "hour": 60
        }
    ]
}

We can use the following code to convert it into a PHP array:

$json = file_get_contents('data.json');
$data = json_decode($json, true);
print_r($data);

The output result is as follows:

Array
(
    [account] => Array
        (
            [name] => Tom
            [age] => 28
        )

    [courses] => Array
        (
            [0] => Array
                (
                    [name] => PHP
                    [hour] => 80
                )

            [1] => Array
                (
                    [name] => JavaScript
                    [hour] => 60
                )

        )

)

Similarly, we can also convert it into a PHP object array:

$json = file_get_contents('data.json');
$data = json_decode($json, false, 512, JSON_OBJECT_AS_ARRAY);
print_r($data);

The output result is as follows:

Array
(
    [account] => Array
        (
            [name] => Tom
            [age] => 28
        )

    [courses] => Array
        (
            [0] => Array
                (
                    [name] => PHP
                    [hour] => 80
                )

            [1] => Array
                (
                    [name] => JavaScript
                    [hour] => 60
                )

        )

)

As you can see, the structure of multi-dimensional data is preserved.

Summary

In this article, we introduced how to convert JSON data into a PHP array or object array. Using PHP's built-in function json_decode(), we can quickly convert between JSON data and PHP data. If you need to deal with JSON data in development, then this knowledge will definitely help you.

The above is the detailed content of How to convert JSON data into array object in php. For more information, please follow other related articles on the PHP Chinese website!

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
What Are the Latest PHP Coding Standards and Best Practices?What Are the Latest PHP Coding Standards and Best Practices?Mar 10, 2025 pm 06:16 PM

This article examines current PHP coding standards and best practices, focusing on PSR recommendations (PSR-1, PSR-2, PSR-4, PSR-12). It emphasizes improving code readability and maintainability through consistent styling, meaningful naming, and eff

How to Implement message queues (RabbitMQ, Redis) in PHP?How to Implement message queues (RabbitMQ, Redis) in PHP?Mar 10, 2025 pm 06:15 PM

This article details implementing message queues in PHP using RabbitMQ and Redis. It compares their architectures (AMQP vs. in-memory), features, and reliability mechanisms (confirmations, transactions, persistence). Best practices for design, error

How Do I Work with PHP Extensions and PECL?How Do I Work with PHP Extensions and PECL?Mar 10, 2025 pm 06:12 PM

This article details installing and troubleshooting PHP extensions, focusing on PECL. It covers installation steps (finding, downloading/compiling, enabling, restarting the server), troubleshooting techniques (checking logs, verifying installation,

How to Use Reflection to Analyze and Manipulate PHP Code?How to Use Reflection to Analyze and Manipulate PHP Code?Mar 10, 2025 pm 06:12 PM

This article explains PHP's Reflection API, enabling runtime inspection and manipulation of classes, methods, and properties. It details common use cases (documentation generation, ORMs, dependency injection) and cautions against performance overhea

PHP 8 JIT (Just-In-Time) Compilation: How it improves performance.PHP 8 JIT (Just-In-Time) Compilation: How it improves performance.Mar 25, 2025 am 10:37 AM

PHP 8's JIT compilation enhances performance by compiling frequently executed code into machine code, benefiting applications with heavy computations and reducing execution times.

How to Use Asynchronous Tasks in PHP for Non-Blocking Operations?How to Use Asynchronous Tasks in PHP for Non-Blocking Operations?Mar 10, 2025 pm 04:21 PM

This article explores asynchronous task execution in PHP to enhance web application responsiveness. It details methods like message queues, asynchronous frameworks (ReactPHP, Swoole), and background processes, emphasizing best practices for efficien

How Do I Stay Up-to-Date with the PHP Ecosystem and Community?How Do I Stay Up-to-Date with the PHP Ecosystem and Community?Mar 10, 2025 pm 06:16 PM

This article explores strategies for staying current in the PHP ecosystem. It emphasizes utilizing official channels, community forums, conferences, and open-source contributions. The author highlights best resources for learning new features and a

How to Use Memory Optimization Techniques in PHP?How to Use Memory Optimization Techniques in PHP?Mar 10, 2025 pm 04:23 PM

This article addresses PHP memory optimization. It details techniques like using appropriate data structures, avoiding unnecessary object creation, and employing efficient algorithms. Common memory leak sources (e.g., unclosed connections, global v

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

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software