downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

rad2deg> <pi
[edit] Last updated: Fri, 17 May 2013

view this page in

pow

(PHP 4, PHP 5)

powEspressione esponenziale

Descrizione

float pow ( float $base , float $esp )

Restituisce base elevato alla potenza di esp. Se possibile, questa funzione restituisce un integer.

Se la potenza non può essere computata, viene generato un errore, e pow() restituirà FALSE. dalla versione 4.2.0 di PHP la funzione pow() non genera alcun warning.

Nota:

Il PHP non può gestire valori negativi per bases.

Example #1 Alcuni esempi di pow()

<?php

var_dump
pow(2,8)); // int(256)
echo pow(-120); // 1
echo pow(00); // 1

echo pow(-15.5); // errore

?>
Avviso

Nel PHP 4.0.6 e precedenti, pow() restituiva sempre un float e non generava alcun errore.

Vedere anche exp() sqrt() bcpow() e gmp_pow().



add a note add a note User Contributed Notes pow - [2 notes]
up
7
chris at ocportal dot com
11 months ago
Many notations use "^" as a power operator, but in PHP (and other C-based languages) that is actually the XOR operator. You need to use this 'pow' function, there is no power operator.

i.e. 3^2 means "3 XOR 2" not "3 squared".

It is particular confusing as when doing Pythagoras theorem in a 'closet points' algorithm using "^" you get results that look vaguely correct but with an error.
up
5
gilthansREMOVEME at gmail dot com
6 years ago
Note that pow(0, 0) equals to 1 although mathematically this is undefined.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites