Answers for "php stdclass object to array"

PHP
2

php stdclass to array

// The manual specifies the second argument of json_decode as:
//	 assoc
//		When TRUE, returned objects will be converted into associative arrays.


$array = json_decode(json_encode($booking), true);
Posted by: Guest on August-27-2020
0

convert stdclass object to array php

$person = new stdClass();
$person->firstName = "Taylor";
$person->age = 32;

//Convert Single-Dimention Object to array
$personArray = (array) $person;

//Convert Multi-Dimentional Object to Array
$personArray = objectToArray($person);
function objectToArray ($object) {
    if(!is_object($object) && !is_array($object)){
    	return $object;
    }
    return array_map('objectToArray', (array) $object);
}
Posted by: Guest on November-03-2019
0

php object(stdclass) to array

$array = json_decode(json_encode($object), true);
Posted by: Guest on December-16-2020

Code answers related to "php stdclass object to array"

Browse Popular Code Answers by Language