shop-php/extend/Fastknife/Utils/MathUtils.php

16 lines
259 B
PHP
Raw Normal View History

2023-11-02 14:43:43 +08:00
<?php
namespace Fastknife\Utils;
class MathUtils
{
/**
* 获取平均值
* @param array $array
* @return int
*/
public static function avg(array $array): int
{
return intval(array_sum($array) / count($array));
}
}