We are getting absolute (positive) value with the help of abs math function.
<html> <head> </head> <body> <?php $a=abs(-10); echo "$a <br>"; ?> </body> </html>