EZ

Eduzan

Learning Hub

Eduzan
Eduzan / PHP

PHP String Functions Complete Reference

The predefined math functions in PHP are used to handle mathematical operations with integer and float types. These math functions are built into PHP and do not require any additional installation.

Installation: These functions do not require any special installation. The complete list of PHP math functions is given below:

Example: A program illustrating the decbin() function in PHP:

<?php
echo decbin(45);
?>

Output:

101101
End of lesson.