How to convert a negative number to a positive number - PHP Avenue Converting a number from negative to positive is a pretty simple process using the absolute function abs() : $positive = abs(-123); // = 123 $position = abs(123); ...