J'ai un problème pour convertir un objet stdClass en tableau. J'ai essayé de cette façon :
return (array) $booking;
ou
return (array) json_decode($booking,true);
ou
return (array) json_decode($booking);
Le tableau avant le cast est plein avec un enregistrement, après ma tentative de cast il est vide. Comment le convertir sans supprimer ses lignes ?
avant le lancement :
array(1) { [0]=> object(stdClass)#23 (36) { ["id"]=> string(1) "2" ["name"]=> string(0) "" ["code"]=> string(5) "56/13" } }
après le lancer est vide NULL si j'essaie de faire un var_dump($booking);
J'ai également essayé cette fonction mais toujours vide :
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;
}
}