LLMS_Grades::round( float $grade )

Round grades according to filterable rounding options set during construction


Parameters Parameters

$grade

(float) (Required) Grade to round


Top ↑

Return Return

(float)


Top ↑

Source Source

File: includes/class-llms-grades.php

	public function round( $grade ) {

		return round( $grade, $this->rounding_precision );

	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.24.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.