Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Rounds a float
<?php round(int|float $num, int $precision = 0, int $mode = PHP_ROUND_HALF_UP): float
<?php     public function round($value, $params)

    {

        return round($value, (int) Arr::get($params, 0, 0));

    }
<?php             return $ms.'ms';

        }



        return round($ms / 1000, 2).'s';

    }