Home > Backend Development > PHP Problem > How to convert object into array in php

How to convert object into array in php

藏色散人
Release: 2023-03-17 16:46:02
Original
4439 people have browsed it

php method to convert objects into arrays: 1. Create a php sample file; 2. Use the "json_encode" function to convert the object array into a string; 3. Use "json_decode" and then convert it into an array. .

How to convert object into array in php

The operating environment of this tutorial: windows10 system, PHP8.1 version, DELL G3 computer

Instructions

During the development process, we will encounter situations where we need to convert instantiated objects into arrays
For example, I want to export the processed data to excel, but the excel export only
supports the array format type

Example

For example, in the following code, I need to return the value data as an array type.
Although it is serialized into an array, it returns an object array at this time

     $data=$orderList->getCollection()->map(function ($order){
            return new OrderResponse($order);
        });
    dd($data->toArray());
Copy after login

Return as follows

^ array:8 [
  0 => app\admin\Responses\OrderResponse {#122
    +"statistical_date": "2021-09-10"
    +"order_num": 1
    +"play_type_count": 1
    +"invalid_order_count": 1
  }
  1 => app\admin\Responses\OrderResponse {#119
    +"statistical_date": "2021-09-09"
    +"order_num": 6
    +"play_type_count": 6
    +"invalid_order_count": 3
  }
]
Copy after login

Processing method

Use json_decode() to convert the string into an array
First convert the object array into a string using json_encode and then convert it into an array. You can

 $data=json_decode(json_encode($data),true);
Copy after login

return as follows

array:8 [
  0 => array:4 [
    "statistical_date" => "2021-09-10"
    "order_num" => 1
    "play_type_count" => 1
    "invalid_order_count" => 1
  ]
  1 => array:4 [
    "statistical_date" => "2021-09-09"
    "order_num" => 6
    "play_type_count" => 6
    "invalid_order_count" => 3
  ]
]
Copy after login

Recommended learning: "PHP Video Tutorial"

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

Related labels:
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template