Home  >  Article  >  Backend Development  >  php convert object to array

php convert object to array

PHPz
PHPzOriginal
2023-05-07 15:54:08280browse

With the wide application of PHP in web development, the PHP language has increasingly become one of the most favorite programming languages ​​​​for developers. In PHP, objects are a very common data type often used in object-oriented programming (OOP).

However, in some application scenarios, developers need to convert objects in PHP into arrays for easy access and processing. So, how to convert an object to an array in PHP? We will introduce it to you in detail in this article.

  1. Using forced type conversion

In PHP, you can use type casting (Type Casting) to convert an object into an array. The specific implementation is as follows:

In the above example, we first define a class named Example, which contains two public properties $name and $age. Next, we create an Example object $example and convert the object to an array by casting it to an array. Finally, we use the print_r() function to output the converted array $array.

After executing the above code, the output result is as follows:

Array
(
    [name] => John
    [age] => 30
)

As can be seen from the output result, here we convert both properties of the Example object into key-value pairs in the array.

It should be noted that when converting attributes, PHP will automatically convert the attribute name into an array key and the attribute value into an array value.

  1. Use the conversion method of the object

In PHP, we can also use the magic method of the object itself to convert the object to an array. Unlike casts, magic methods are more flexible and can decide how to convert an object into an array based on the actual conditions of the object's properties.

The specific implementation is as follows:

 $value) {
            $array[$key] = $value;
        }
        return $array;
    }
}

$example = new Example();
$array = $example->toArray();
print_r($array);
?>

In the above example, we also defined a class named Example and added a method named toArray(). This method uses a foreach loop to traverse the properties of the object, using the property name as the array key name and the property value as the array value.

Then, we instantiate the Example class and call the toArray() method of the class to convert the object to an array. Finally, we use the print_r() function again to output the converted array $array.

After executing the above code, the output result is as follows:

Array
(
    [name] => John
    [age] => 30
)

Compared with forced type conversion, using the object conversion method can more flexibly control the conversion process of objects and arrays. During development, we can flexibly choose which method to use based on specific needs.

  1. Use PHP’s built-in functions

In PHP, we can also use built-in functions to convert objects to arrays. The specific implementation is as follows:

In the above example, we also defined a class named Example and created an Example object $example. Next, we can use the PHP built-in function get_object_vars() to convert the object $example into an array $array.

get_object_vars() function will return an array consisting of object attribute names and attribute values, with the genus name as the key name and the attribute value as the array value. Finally, we output the converted array $array.

After executing the above code, the output result is as follows:

Array
(
    [name] => John
    [age] => 30
)

Compared with the previous two methods, using the get_object_vars() function can realize the object to array conversion process more concisely. However, it should be noted that if there are private properties and protected properties in the object properties, this method will not be able to obtain the values ​​of these properties.

Summary

In PHP, converting objects to arrays is a common need. In this article, we introduced three ways to implement object to array conversion: using cast, using the object's conversion method, and using PHP built-in functions.

Each method has its own advantages and disadvantages, and you can flexibly choose according to specific needs during development. We hope that this article can help you better understand the conversion process of objects and arrays in PHP, and help you in actual development.

The above is the detailed content of php convert object to array. 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
Previous article:php array function methodNext article:php array function method