PHP Math

0
3K

PHP has a set of math functions that allows you to perform mathematical tasks on numbers.


PHP pi() Function

The pi() function returns the value of PI:


PHP min() and max() Functions

The min() and max() functions can be used to find the lowest or highest value in a list of arguments:

Example

echo(min(0, 150, 30, 20, -8, -200));
echo(max(0, 150, 30, 20, -8, -200));
Try it Yourself »

PHP abs() Function

The abs() function returns the absolute (positive) value of a number:

Example

echo(abs(-6.7));
Try it Yourself »


PHP sqrt() Function

The sqrt() function returns the square root of a number:

Example

echo(sqrt(64));
Try it Yourself »

PHP round() Function

The round() function rounds a floating-point number to its nearest integer:

Example

echo(round(0.60));
echo(round(0.49));
Try it Yourself »

Random Numbers

The rand() function generates a random number:

Example

echo(rand());
Try it Yourself »

To get more control over the random number, you can add the optional min and max parameters to specify the lowest integer and the highest integer to be returned.

For example, if you want a random integer between 10 and 100 (inclusive), use rand(10, 100):

Example

echo(rand(10, 100));
Try it Yourself »

Complete PHP Math Reference

For a complete reference of all math functions, go to our complete PHP Math Reference.

The PHP math reference contains description and example of use, for each function.


Search
Categories
Read More
Other
PHP Multiline Comments
Multi-line Comments Multi-line comments start with /* and end with */. Any text...
By PHP Tutorial 2024-05-17 07:15:48 0 2K
Other
PHP Magic Constants
PHP Predefined Constants PHP has nine predefined constants that change value depending on where...
By PHP Tutorial 2024-05-17 07:40:16 0 2K
Other
PHP - Modify Strings
PHP has a set of built-in functions that you can use to modify strings. Upper Case...
By PHP Tutorial 2024-05-17 07:29:19 0 3K
Other
PHP Constants
Constants are like variables, except that once they are defined they cannot be changed or...
By PHP Tutorial 2024-05-17 07:39:53 0 2K
Other
PHP Strings
A string is a sequence of characters, like "Hello world!". Strings Strings in PHP are...
By PHP Tutorial 2024-05-17 07:28:17 0 3K