Skip to content

Instantly share code, notes, and snippets.

@pashamray
Created April 12, 2017 11:27
Show Gist options
  • Select an option

  • Save pashamray/1f78b42070475028cd2912fdccf2b01d to your computer and use it in GitHub Desktop.

Select an option

Save pashamray/1f78b42070475028cd2912fdccf2b01d to your computer and use it in GitHub Desktop.
<?php
$previous_data = 35;
$current_data = 150;
$percent = ($previous_data != 0) ? round((($current_data - $previous_data) * 100) / $previous_data, 2) : 0;
echo $percent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment