Skip to content

Instantly share code, notes, and snippets.

@INDIAN2020
Forked from ScottPhillips/percent_change.php
Created May 29, 2014 04:35
Show Gist options
  • Save INDIAN2020/fd2c4620653461b73cc9 to your computer and use it in GitHub Desktop.
Save INDIAN2020/fd2c4620653461b73cc9 to your computer and use it in GitHub Desktop.
<?php
function percentChange($oldNos = 0, $newNos = 0) {
$scratchSheet = ($newNos + 0) - ($oldNos + 0);
return round((($scratchSheet / $oldNos) * 100),2);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment