Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@olimortimer
Created October 12, 2015 11:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olimortimer/38a65007235718482fed to your computer and use it in GitHub Desktop.
Save olimortimer/38a65007235718482fed to your computer and use it in GitHub Desktop.
PHP: Round X to the nearest Y
<?php
// Round 0.035 up to the nearest 0.01
echo ceil( 0.035 / 0.01 ) * 0.01;
// 0.04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment