19 lines
230 B
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;
|
|
}
|
|
|
|
|
|
} |