Skip to content

Instantly share code, notes, and snippets.

@jbrooksuk
Created March 13, 2012 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbrooksuk/2029362 to your computer and use it in GitHub Desktop.
Save jbrooksuk/2029362 to your computer and use it in GitHub Desktop.
Calculates a percentage off of a price, then rounds to the next 9.
<?php
function calcPPrice($iPrice, $iDPrice = 1) {
$iDiscounted = round($iPrice - ($iPrice / 100 * $iDPrice));
return $iDiscounted - (10 - (9 - ($iDiscounted % 10)));
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment