PageRenderTime 53ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 0ms

/2.0/Tests/Math/ceil.php

#
PHP | 7 lines | 6 code | 1 blank | 0 comment | 0 complexity | f0e2f21a96cfafdc9ca7b27e8cc00793 MD5 | raw file
Possible License(s): CPL-1.0, GPL-2.0, CC-BY-SA-3.0, MPL-2.0-no-copyleft-exception, Apache-2.0
  1. [expect php]
  2. [file]
  3. <?php
  4. echo ceil(4.3); // 5
  5. echo ceil(9.999); // 10
  6. ?>