0

Are there functions that would round up all the decimals in an integer?.For example:

1.2 = 2
1.7 = 2

Or is there a computation that I could use to round up all the decimals?

marchemike
  • 3,179
  • 13
  • 53
  • 96

1 Answers1

2

ceil() http://docs.php.net/manual/en/function.ceil.php

<?php
echo ceil(4.3);    // 5
echo ceil(9.999);  // 10
?> 
srain
  • 8,944
  • 6
  • 30
  • 42