Mega Code Archive

 
Categories / Php / Math
 

Abs( ) function returns the absolute value of the parameter

<?     abs(50); // 50     abs(-12); // 12 ?>