abs() - return the absolute value of a number
mixed abs( int | float number );
Returns the absolute value of the supplied <number>.
int value = abs( 10 ); // 10
int value = abs( -10 ); // 10
float value = abs( 3.14 ); // 3.140000
float value = abs( -3.14 ); // 3.140000