


In PHP, we sometimes need to convert an object into an array to facilitate our data operations. Normally, if the object's attribute name is the same as the array's key value, we can directly use the object-to-array function, for example:
$array = (array) $obj; // $obj为对象,$array为数组
However, if the object's attribute name is irregular, for example, in the attribute name With underscores, hyphens, or capital letters, etc., at this time we need to manually process the attribute names and convert them into legal array key names. Below we introduce several methods of converting irregular objects into arrays.
Method 1: Use the get_object_vars() function
The get_object_vars() function can be used to obtain all attributes and attribute values of the object and return an associative array. We can use this function to obtain the object attribute list and then process it.
$obj = new stdClass(); $obj->user_name = '张三'; $obj->user_age = 20; $obj->{'user_city-name'} = '北京'; $arr = array(); $vars = get_object_vars($obj); foreach($vars as $key => $value){ $arr[str_replace('_', '-', $key)] = $value; } var_export($arr);
In the above example, we use the get_object_vars() function to obtain all the attributes and attribute values of the object, and then use a foreach loop to traverse and convert the underscores in the attribute names to hyphens. The final converted array is as follows:
array ( 'user_name' => '张三', 'user_age' => 20, 'user-city-name' => '北京', )
Note that this method only processes the properties of the object and does not include inherited properties.
Method 2: Use the json_encode() and json_decode() functions
We can also use the json_encode() and json_decode() functions to convert the object into JSON format, and then Use the json_decode() function to convert the JSON format back to an array.
$obj = new stdClass(); $obj->user_name = '张三'; $obj->user_age = 20; $obj->{'user_city-name'} = '北京'; $json_str = json_encode($obj); $arr = json_decode($json_str, true); foreach($arr as $key => $value){ $new_key = str_replace('_', '-', $key); unset($arr[$key]); $arr[$new_key] = $value; } var_export($arr);
In the above example, we use the json_encode() function to convert the object into JSON format, and then use the json_decode() function to convert the JSON format back to an array. Then use a foreach loop to traverse the array and convert the underscores in the attribute names into hyphens. The final converted array is the same as method one.
Method 3: Use the array_map() function
The array_map() function can apply a callback function to each element in the array and return a new array. We can use this function to convert underscores in property names to hyphens.
$obj = new stdClass(); $obj->user_name = '张三'; $obj->user_age = 20; $obj->{'user_city-name'} = '北京'; $arr = (array) $obj; $arr = array_map(function($key){ return str_replace('_', '-', $key); }, array_keys($arr)); $arr = array_combine($arr, (array) $obj); var_export($arr);
In the above example, we use the array_map function to convert the underscore in the attribute name into a hyphen, use the array_keys() function to obtain the attribute list of the object, and then use the array_combine() function to convert the attribute name and attribute value Convert to array. The final converted array is the same as method one and method two.
Summary:
When we need to convert an object into an array and encounter irregular attribute names, we can use get_object_vars(), json_encode(), array_map() and other functions to process it. Through these methods, we can easily convert irregular objects into regular arrays to facilitate our data operations.
The above is the detailed content of A brief analysis of several methods of converting irregular objects into arrays. For more information, please follow other related articles on the PHP Chinese website!

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

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

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,

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's JIT compilation enhances performance by compiling frequently executed code into machine code, benefiting applications with heavy computations and reducing execution times.

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

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version
Recommended: Win version, supports code prompts!

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.

SublimeText3 Linux new version
SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
