PHP 8.4.0 RC4 available for testing

fpow

(PHP 8 >= 8.4.0)

fpowRaise one number to the power of another, according to IEEE 754

Descrição

fpow(float $num, float $exponent): float

Returns the floating point result of raising num to the power of exponent. If num is zero and exponent is less than zero, then INF is returned.

Parâmetros

num
The base to use.
exponent
The exponent.

Valor Retornado

Returns a float corresponding to $num$exponent.

Exemplos

Exemplo #1 fpow() example

<?php
var_dump
(fpow(10, 2));
var_dump(fpow(0, -3));
var_dump(fpow(-1, 5.5));
?>

O exemplo acima produzirá:

float(100)
float(INF)
float(NAN)

Veja Também

  • Exponentiation operator **
  • pow() - Expressão exponencial
  • fdiv() - Divide dois números de acordo com a IEEE 754
  • fmod() - Retorna o resto (módulo) em ponto flutuante da divisão dos argumentos
adicione uma nota

Notas Enviadas por Usuários (em inglês)

Não há notas de usuários para esta página.
To Top