Search w3schools.com:

SHARE THIS PAGE

PHP log10() Function


PHP Math Reference Complete PHP Math Reference

Definition and Usage

The log10() function returns the base-10 logarithm of a number.

Syntax

log10(x)

Parameter Description
x Required. A number


Tips and Notes

Note: If the parameter x is negative, -1.#IND is returned.


Example

In the following example we will use the log10() function on different numbers:

<?php
echo(log10(2.7183) . "<br />");
echo(log10(2) . "<br />");
echo(log10(1) . "<br />");
echo(log10(0) . "<br />");
echo(log10(-1))
?>

The output of the code above will be:

0.434297385125
0.301029995664
0
-1.#INF
-1.#IND


PHP Math Reference Complete PHP Math Reference

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]