PHP provides many built-in math functions for working with numbers. These functions help with calculations, rounding, and formatting.
Essential Math Functions
abs()— Absolute value (positive number)round()— Round to nearest integerceil()— Round up to next integerfloor()— Round down to previous integerrand()— Generate a random integermin()— Get the smallest valuemax()— Get the largest valuenumber_format()— Format a number with commas and decimals
PHP Math Constants
M_PI— Value of Pi (3.14159...)M_E— Euler's number (2.71828...)PHP_INT_MAX— Largest integer supported