get value from stdclass object code example
Example: get value from stdclass object
// Directly
$obj->variable;
// Through Array
$array = get_object_vars($obj);
// Directly
$obj->variable;
// Through Array
$array = get_object_vars($obj);