/2.0/Tests/Math/abs.php
# · PHP · 11 lines · 10 code · 1 blank · 0 comment · 0 complexity · 8e2a73600bed13d963d2815cce4530ef MD5 · raw file
- [expect php]
- [file]
-
- <?php
- echo $abs = abs(-4.2); // $abs = 4.2; (double/float)
- echo "\n";
- echo $abs2 = abs(5); // $abs2 = 5; (integer)
- echo "\n";
- echo $abs3 = abs(-5); // $abs3 = 5; (integer)
- echo "\n";
- ?>