Object to array json to array method

Source: Internet
Author: User
Tags php json
Array is the pattern, and the disk array pattern is to combine the storage space of several disks to form a large single contiguous storage space. Array () is actually a language structure (language construct), usually used to define a direct array, but its usage is very similar to the use of functions, so you need to use more information about array array can check related manuals, this article we share with you two of tips.

1,the PHP object to the array method ( object to array):

/**
* Object to Array
*/
function Object_to_array ($obj) {
$_arr=is_object ($obj)? Get_object_vars ($obj): $obj;
foreach ($_arr as $key = = $val) {
$val = (Is_array ($val)) | | Is_object ($val)? Object_to_array ($val): $val;
$arr [$key]= $val;
}
return $arr;
}

2,PHP json character to the array method (JSON to array):

If it is a JSON string, you can convert the string to an array directly from the Json_decode function.

Json_decode (PHP 5 >= 5.2.0, PECL json >= 1.2.0)

Json_decode-accepts a JSON-formatted string and converts it to a PHP variable

Mixed Json_decode (String $json [, bool $assoc])

Parameters:

JSON string in JSON string format to decode.

Assoc When this argument is TRUE, returns the result of an array (associative array), which defaults to false and returns an object.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.