fitness-web/common/components/DataProviderTotal.php

19 lines
230 B
PHP

<?php
namespace common\components;
class DataProviderTotal{
public static function pageTotal($provider, $fieldName)
{
$total=0;
foreach($provider as $item){
$total+=$item[$fieldName];
}
return $total;
}
}