objeto PHP para matar
//This works best
$array = json_decode(json_encode($object), true);
adeleyeayodeji
//This works best
$array = json_decode(json_encode($object), true);
//It is verry easy : just cast object to array
$array = (array)$object;
$array = (array) $yourObject;
$array = (array)$object;
$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);
}
// It will work Perfectly Fine.
$arr = json_decode(json_encode($obj), true);