how to convert object to array and array to object


$array =  (array) $yourObject;

$object =  (object) $yourarray;

Comments

Popular Posts