Skip to content

Instantly share code, notes, and snippets.

@halgatewood
Last active August 29, 2015 14:22
Show Gist options
  • Select an option

  • Save halgatewood/1552d6fbb1ae673c3264 to your computer and use it in GitHub Desktop.

Select an option

Save halgatewood/1552d6fbb1ae673c3264 to your computer and use it in GitHub Desktop.
Convert Celsius to Fahrenheit and vice versa.
// CONVERSIONS
function hg_c_to_f( $c )
{
return round( ( $c * 1.8 ) + 32);
}
function hg_f_to_c( $f )
{
return round(($f- 32) / 1.8);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment