?
Path : /home/admin/public_html/old/board/modules/mod_gk_weather/ |
Current File : /home/admin/public_html/old/board/modules/mod_gk_weather/units.php |
<?php /** * Gavick GK Weather - units functions * @package Joomla! * @Copyright (C) 2009 Gavick.com * @ All rights reserved * @ Joomla! is Free Software * @ Released under GNU/GPL License : http://www.gnu.org/copyleft/gpl.html * @version $Revision: 1.0.0 $ **/ function Cel2F($value) { return floor(32 + ((5/9) * $value)).'°F'; } function F2Cel($value) { return floor((5/9) * ($value - 32)).'°C'; } ?>