fahrenheit'ı celcius'a çevirebileceğiniz ufak bir kod bloğu.

function convert_fahrenheit_to_celsius($fahrenheit)
{
    return round($celsius = ($fahrenheit - 32) * 5/9, 0);
}