get values from stdclass object php code example
Example 1: how to retrieve value from stdclass array in php
foreach ($array as $obj)
{
// Here you can access to every object value in the way that you want
echo $obj->next_key_name;
}
Example 2: get data from stdclass object php
$var = $this->db->get_where();