Show Output
PHP Get Absolute Value of a Number
"; // 0utputs: 5 (integer) echo abs(-5) . "
"; // 0utputs: 5 (integer) echo abs(4.2) . "
"; // 0utputs: 4.2 (double/float) echo abs(-4.2) . "
"; // 0utputs: 4.2 (double/float) ?>