mirror of
https://github.com/TheAlgorithms/PHP.git
synced 2025-07-09 11:13:50 +02:00
* temperature conversions * perfect number * added unit tests and ran phpcs * unit test * fixed style issue in ConversionsTest.php * fixed comments
116 lines
2.4 KiB
PHP
116 lines
2.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This function converts the submitted
|
|
* temperature (Celsius) and converts it into
|
|
* Fahrenheit.
|
|
*
|
|
* @author Marco https://github.com/MaarcooC
|
|
* @param float $celsius
|
|
* @throws \Exception
|
|
* @return float
|
|
*/
|
|
function CelsiusToFahrenheit($celsius)
|
|
{
|
|
if (!is_numeric($celsius)) {
|
|
throw new \Exception("Temperature (Celsius) must be a number");
|
|
}
|
|
|
|
return round(($celsius * 9 / 5) + 32, 1);
|
|
}
|
|
|
|
/**
|
|
* This function converts the submitted
|
|
* temperature (Fahrenheit) and converts it into
|
|
* Celsius.
|
|
*
|
|
* @author Marco https://github.com/MaarcooC
|
|
* @param float $fahrenheit
|
|
* @throws \Exception
|
|
* @return float
|
|
*/
|
|
function FahrenheitToCelsius($fahrenheit)
|
|
{
|
|
if (!is_numeric($fahrenheit)) {
|
|
throw new \Exception("Temperature (Fahrenheit) must be a number");
|
|
}
|
|
|
|
return round(($fahrenheit - 32) * 5 / 9, 1);
|
|
}
|
|
|
|
/**
|
|
* This function converts the submitted
|
|
* temperature (Celsius) and converts it into
|
|
* Kelvin.
|
|
*
|
|
* @author Marco https://github.com/MaarcooC
|
|
* @param float $celsius
|
|
* @throws \Exception
|
|
* @return float
|
|
*/
|
|
function CelsiusToKelvin($celsius)
|
|
{
|
|
if (!is_numeric($celsius)) {
|
|
throw new \Exception("Temperature (Celsius) must be a number");
|
|
}
|
|
|
|
return round(($celsius + 273.15), 2);
|
|
}
|
|
|
|
/**
|
|
* This function converts the submitted
|
|
* temperature (Kelvin) and converts it into
|
|
* Celsius.
|
|
*
|
|
* @author Marco https://github.com/MaarcooC
|
|
* @param float $kelvin
|
|
* @throws \Exception
|
|
* @return float
|
|
*/
|
|
function KelvinToCelsius($kelvin)
|
|
{
|
|
if (!is_numeric($kelvin)) {
|
|
throw new \Exception("Temperature (Kelvin) must be a number");
|
|
}
|
|
|
|
return round(($kelvin - 273.15), 2);
|
|
}
|
|
|
|
/**
|
|
* This function converts the submitted
|
|
* temperature (Kelvin) and converts it into
|
|
* Fahrenheit.
|
|
*
|
|
* @author Marco https://github.com/MaarcooC
|
|
* @param float $kelvin
|
|
* @throws \Exception
|
|
* @return float
|
|
*/
|
|
function KelvinToFahrenheit($kelvin)
|
|
{
|
|
if (!is_numeric($kelvin)) {
|
|
throw new \Exception("Temperature (Kelvin) must be a number");
|
|
}
|
|
|
|
return round(($kelvin - 273.15) * 1.8 + 32, 2);
|
|
}
|
|
|
|
/**
|
|
* This function converts the submitted
|
|
* temperature (Fahrenheit) and converts it into
|
|
* kelvin.
|
|
*
|
|
* @author Marco https://github.com/MaarcooC
|
|
* @param float $fahrenheit
|
|
* @throws \Exception
|
|
* @return float
|
|
*/
|
|
function FahrenheitToKelvin($fahrenheit)
|
|
{
|
|
if (!is_numeric($fahrenheit)) {
|
|
throw new \Exception("Temperature (Fahrenheit) must be a number");
|
|
}
|
|
|
|
return round(($fahrenheit - 32) * 5 / 9 + 273.15, 2);
|
|
}
|