fork download
  1. <?php
  2.  
  3. $points = 300;
  4. $base = 1000;
  5.  
  6. $percent = $points/$base;
  7. $percent_friendly = number_format( $percent * 100, 2 ) . '%'; // change 2 to # of decimals
  8.  
  9. echo $percent_friendly;
Success #stdin #stdout 0.02s 23608KB
stdin
Standard input is empty
stdout
30.00%