mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-22 12:29:11 -04:00
26 lines
534 B
PHP
26 lines
534 B
PHP
|
|
<?php defined('SYSPATH') OR die('No direct access allowed.');
|
||
|
|
/**
|
||
|
|
* Number helper class.
|
||
|
|
*
|
||
|
|
* $Id$
|
||
|
|
*
|
||
|
|
* @package Core
|
||
|
|
* @author Kohana Team
|
||
|
|
* @copyright (c) 2007-2008 Kohana Team
|
||
|
|
* @license http://kohanaphp.com/license.html
|
||
|
|
*/
|
||
|
|
class num_Core {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Round a number to the nearest nth
|
||
|
|
*
|
||
|
|
* @param integer number to round
|
||
|
|
* @param integer number to round to
|
||
|
|
* @return integer
|
||
|
|
*/
|
||
|
|
public static function round($number, $nearest = 5)
|
||
|
|
{
|
||
|
|
return round($number / $nearest) * $nearest;
|
||
|
|
}
|
||
|
|
|
||
|
|
} // End num
|