1 | <?php |
||
5 | class Converter |
||
6 | { |
||
7 | const ROUND_FLOAT = 2; |
||
8 | |||
9 | public static function kelvinToCelsius($temp) |
||
13 | |||
14 | public static function celsiusToKelvin($temp) |
||
18 | |||
19 | public static function kelvinToFahrenheit($temp) |
||
23 | |||
24 | public static function fahrenheitToKelvin($temp) |
||
28 | |||
29 | public static function intToDate($int, $format = null) |
||
37 | } |