log10

(PHP 4, PHP 5, PHP 7, PHP 8)

log10Logaritmo na base 10

Descrição

log10(float $num): float

Retorna o logaritmo na base 10 de num.

Parâmetros

num

O argumento a ser processado

Valor Retornado

O logaritmo na base 10 de num

Veja Também

  • log() - Logaritmo natural

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