Table of Contents
(1)php对象转数组的方法:
(2)php Json字符转数组的方法:
Home Backend Development PHP Tutorial PHP对象和数组互转的方法

PHP对象和数组互转的方法

Jun 20, 2016 pm 01:04 PM
php object

在php开发网站的时候,经常要将两种数据类型相互转化,以便使用。

下面介绍PHP对象和PHP数组将的相互转化方法:

(1)php对象转数组的方法:

<span style="font-size: 14px;">/**</span><br /> * object 转 array<br /> */<br />function object_to_array($obj){<br />$_arr=is_object($obj)?get_object_vars($obj):$obj;<br />foreach($_arr as $key=>$val){<br />$val=(is_array($val))||is_object($val)?object_to_array($val):$val;<br />$arr[$key]=$val;<br />}<br />return $arr;<br /><p>}<span style="font-size: 14px;">
Copy after login

(2)php Json字符转数组的方法:

如果是个 json 字符串的话,可直接通过 json_decode 函数将字符串转换成数组。

json_decode (PHP 5 >= 5.2.0, PECL json >= 1.2.0)json_decode — 接受一个 JSON 格式的字符串并且把它转换为 PHP 变量mixed json_decode(string $json[,bool $assoc])参数:json  待解码的 json string 格式的字符串。

assoc  当该参数为 TRUE 时,将返回一个数组(关联数组)形式的结果,默认为false,返回的是一个对象。


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 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)

Which is faster, php object operation or array operation? Which is faster, php object operation or array operation? Jul 12, 2023 pm 03:04 PM

PHP array operations are faster than PHP object operations. The reasons are: 1. Object operations involve steps such as creating objects, calling methods and accessing properties, which may be slower in performance; 2. Array operations are a special type of variables. Can hold multiple values, use different methods and functions on arrays, and can perform fast and efficient operations on arrays.

How to convert php array to object in loop How to convert php array to object in loop Aug 10, 2023 pm 02:44 PM

There are two ways to convert a PHP array into an object in a loop: 1. Use forced type conversion to convert the array into an object, and the keys of the array must be valid object attribute names; 2. Create a new object and add the elements of the array Copied into the object, independent of whether the array keys are valid as property names of the object.

What is the difference between php objects and arrays What is the difference between php objects and arrays Aug 24, 2023 pm 05:02 PM

The difference between PHP objects and arrays is: 1. The object is a composite data type, while the array is a simple data type; 2. The properties and methods of the object can be accessed through the instance of the object, while the elements of the array can be accessed through the index; 3. An object is an entity that encapsulates properties and methods, while an array is an ordered collection of elements; 4. Objects are passed by reference in PHP, while arrays are passed by value in PHP; 5. Objects are suitable for describing entities with state and behavior, while arrays are suitable for storing and processing large amounts of similar data.

Are php arrays objects? Are php arrays objects? Jul 22, 2022 pm 05:24 PM

PHP arrays are not objects. In PHP, arrays and objects are two different data types. An array is a collection of ordered data; and an object is the result of instantiation of a class, which contains not only properties but also methods. Objects can encapsulate operations on data, but arrays cannot.

How to use object variables in PHP How to use object variables in PHP Sep 13, 2023 pm 12:59 PM

How to use object variables in PHP requires specific code examples. In PHP, using object variables makes it easier to manage and manipulate objects. An object variable is a data type that stores object instances. The object can be manipulated by calling methods of the class and accessing the properties of the class. The following will introduce in detail how to use object variables in PHP and provide corresponding code examples. Creating objects In PHP, you can use the new keyword to create objects. An example is as follows: classCar{public$colo

How to get all methods in an object in php How to get all methods in an object in php Mar 23, 2023 am 11:12 AM

In PHP, it is very simple to obtain all the methods in an object, which can be achieved by using the ReflectionClass class in the PHP standard library. The ReflectionClass class provides a method to reflect all information of a class in PHP, including class name, attributes, methods, etc. Below we introduce in detail how to use the ReflectionClass class to obtain all methods in an object.

Explore how to call object methods in PHP Explore how to call object methods in PHP Mar 28, 2023 pm 03:00 PM

PHP is a very popular programming language that can be used to develop various applications, especially web applications. In PHP, object-oriented programming is one of its important features. This article will explore how to call object methods in PHP.

What is converting php object to array? What is converting php object to array? Aug 03, 2023 pm 05:10 PM

Converting a PHP object to an array refers to the process of converting a PHP object into an associative array. In PHP, an object is an instantiation of a class, with attributes and methods, and an array is a data structure composed of a series of key-value pairs. By manual conversion, using the "get_object_vars()" function or using the type conversion operator, object to array conversion can be achieved, data can be easily processed and transferred, and the readability and maintainability of the code can be improved.

See all articles