<?php echo abs(-4.2); // 4.2 (double/nombre à virgule flottante) echo abs(5); // 5 (entier) echo abs(-5); // 5 (entier) ?>