Вы можете использовать get_class_methods
, чтобы найти геттеры:
function toArray($object)
{
$result = array();
$methods = get_class_methods($object);
foreach($methods as $method) {
if ('get' == substr($method, 0, 3)) {
$result[substr($method, 3)] = $object->$method();
}
}
return $result;
}