Skip to content

Instantly share code, notes, and snippets.

@pawiromitchel
Created January 27, 2017 11:23
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 pawiromitchel/d2b607a10379a7f2c7516c08881b8afb to your computer and use it in GitHub Desktop.
Save pawiromitchel/d2b607a10379a7f2c7516c08881b8afb to your computer and use it in GitHub Desktop.
PHP - MS Exel ceiling function
<?php
function ceiling($number, $significance = 1)
{
return ( is_numeric($number) && is_numeric($significance) ) ? (ceil($number/$significance)*$significance) : false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment