Skip to content

Instantly share code, notes, and snippets.

@sscovil
Last active December 28, 2015 19:29
Show Gist options
  • Save sscovil/7550289 to your computer and use it in GitHub Desktop.
Save sscovil/7550289 to your computer and use it in GitHub Desktop.
<?php
/**
* Percent
*
* @param $a integer Number that represents 100%.
* @param $b integer Number to compare to $a.
*
* @return string Number B as a percentage of Number A.
*/
public static function percent( $a, $b ) {
return intval( ( $b / $a ) * 100 ) . "%";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment