Files
citrus-cms/app/Functions/percentage.php
T
2026-04-28 21:14:25 +03:00

10 lines
211 B
PHP

<?php function percentage($number, $max, $fixed = 2) {
try {
$percent = round($number * 100 / $max, $fixed);
} catch (\Throwable $th) {
$percent = 0;
}
return $percent;
} ?>