PHP Number Manipulations

A number is a mathematical object and one of the datatypes which is used to count, measure and calculation. In computer programming, a number is very important datatype. PHP has two types of numbers, Integers & Floating point numbers. PHP allows us to perform different PHP Number Manipulation operations on numbers for example comparing numbers, operation on series etc.

Check Valid Number

Using PHP's built in function is_int() and is_double(), it is possible to check whether variable is a number.

Check Valid Number Example

This will produce following result

Check Number By Type

Using PHP's built in function gettype(), it is possible to check whether variable is a number by getting its type.

Check Number By Type Example

This will produce following result

Round off Floating Point Number

Using PHP's built in function round(), it is possible to round off floating point number through round() function.

Round off Floating Point Number Example

This will produce following result

Compare Two Approximately Equal Floating Point Numbers

Using PHP's built in function abs(), it is possible to compare two approximately equal floating point numbers through abs() function.

Compare Two Approximately Equal Floating Point Numbers Example

This will produce following result

Apply a Single Code to a Range of Integers

Using PHP's built in function abs(), it is possible to apply a single code to a range of integers using loops.

Apply a Single Code to a Range of Integers Example

This will produce following result

Check Minimum Value in an Array

Using PHP's built in function sort(), it is possible to search for the number having minimum value in an array of unordered numbers.

Check Minimum Value in an Array Example

This will produce following result

Check Maximum Value in an Array

Using PHP's built in function sort(), it is possible to search for the number having maximum value in an array of unordered numbers.

Check Maximum Value in an Array Example

This will produce following result

Converting Between Binary and Decimal

Using PHP's built in function decbin() and bindec(), it is possible to convert a number into binary and decimal.

Check Maximum Value in an Array Example

Converting Between Octal and Hexadecimal

Using PHP's built in function octdec() and hexdec(), it is possible to convert a number into octal and hexadecimal.

Converting Between Octal and Hexadecimal Example

Placing Commas in Numbers

Using PHP's built in function number_format(), it is possible to output a number with commas in the correct places.

Placing Commas in Numbers Example