Skip to content

Instantly share code, notes, and snippets.

@FSahinn
Created April 27, 2017 13:55
Show Gist options
  • Save FSahinn/16e3f762876310009dfbd2100b437432 to your computer and use it in GitHub Desktop.
Save FSahinn/16e3f762876310009dfbd2100b437432 to your computer and use it in GitHub Desktop.
/*
$tUp: Beğenenler
$tDown: Beğenmeyenler
$tTotal: Beğenen ve Beğenmeyenler Toplamı
$percentageCalculate: Beğenenlerin yüzde hesaplaması. Ör: % 75 Kişi Beğenmiş
*/
$tUp = 50;
$tDown = 90;
$tTotal= $tUp + $tDown;
$percentageCalculate = ($tUp*100) / $tTotal;
echo number_format($percentageCalculate, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment