PHP COURSE • LESSON 09
PHP Math Functions
PHP provides built-in functions for mathematical calculations.
Common Math Functions
Function
Purpose
sqrt()
Square root
pow()
Power calculation
round()
Round number
max()
Largest value
Example
PHP Math
<?php
echo sqrt(25);
?>
Output
5