最佳答案
我有一个问题,将对象stdClass转换为数组。 我尝试过这样做:
return (array) $booking;
或
return (array) json_decode($booking,true);
或
return (array) json_decode($booking);
强制转换前的数组充满了一条记录,在我尝试强制转换后它是空的。 如何强制转换/不删除它的行?< / p >
转换前的数组:
array(1) { [0]=> object(stdClass)#23 (36) { ["id"]=> string(1) "2" ["name"]=> string(0) "" ["code"]=> string(5) "56/13" } }
如果我尝试创建var_dump($booking);
,则after cast为空NULL
我也尝试过这个功能,但总是空的:
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;
}
}