Skip to content

Instantly share code, notes, and snippets.

@sasajib
Forked from jimjam88/Fraction2Decimal.php
Last active August 29, 2015 14:08
Show Gist options
  • Save sasajib/88a330369b0b405cc925 to your computer and use it in GitHub Desktop.
Save sasajib/88a330369b0b405cc925 to your computer and use it in GitHub Desktop.
/**
* Convert a fractinal price to a decimal price.
*
* @param string $fractional
* @return string
*/
public static function fractional2decimal($fractional)
{
list ($numerator, $denomenator) = explode('/', $fractional);
return number_format(($numerator / $denomenator) + 1, 2, '.', '');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment