Sometimes we may want to know what the field values inside the $row object in the Views Style output template. This could be done by.
$arr_rows = $view->style_plugin->rendered_fields; <?php foreach($arr_rows as $key=>$arr_row) : ?> <?php print $arr_row['field1']; ?> <?php print $arr_row['field2']; ?> <?php print $arr_row['field3']; ?> <?php endforeach; ?>
Done =)
Reference: extract views $row values