我在将对象 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" } }
如果我尝试制作,则演员后为空 NULLvar_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;
}
}