log10

(PHP 4, PHP 5)

log10Base-10 logarithm

Опис

float log10 ( float $arg )

Returns the base-10 logarithm of arg.

Параметри

arg

The argument to process

Значення, що повертаються

The base-10 logarithm of arg

Прогляньте Також

  • log() - Natural logarithm

add a note add a note

User Contributed Notes 1 note

up
-60
smalladi at lexgen dot com
22 years ago
Note that log of a negative or undefined number returns -Infinity.
To Top