php stdClass to array
我有一个问题,将对象stdClass转换为数组。我尝试过这样:
return (array) $booking;
或
return (array) json_decode($booking,true);
或
return (array) json_decode($booking);
强制转换之前的数组已满一条记录,在我尝试转换后,它是空的。如何在不删除其行的情况下投射/转换它?
转换前的数组:
array(1) { [0]=> object(stdClass)#23 (36) { ["id"]=> string(1) "2" ["name"]=> string(0) "" ["code"]=> string(5) "56/13" } }
在 cast 是空的 NULL 之后,如果我尝试使var_dump($booking);
我也尝试过这个函数,但总是空的:
public function objectToArray($d) {
if (is_object($d)) {
// Gets the properties of the given object
// with get_object_vars function
$d = get_object_vars($d);
}
if (is_array($d)) {
/*
* Return array converted to object
* Using __FUNCTION__ (Magic constant)
* for recursive call
*/
return array_map(__FUNCTION__, $d);
}
else {
// Return array
return $d;
}
}