/2.0/Tests/Math/abs.php

# · PHP · 11 lines · 10 code · 1 blank · 0 comment · 0 complexity · 8e2a73600bed13d963d2815cce4530ef MD5 · raw file

  1. [expect php]
  2. [file]
  3. <?php
  4. echo $abs = abs(-4.2); // $abs = 4.2; (double/float)
  5. echo "\n";
  6. echo $abs2 = abs(5); // $abs2 = 5; (integer)
  7. echo "\n";
  8. echo $abs3 = abs(-5); // $abs3 = 5; (integer)
  9. echo "\n";
  10. ?>