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.
pow
(PHP 4, PHP 5)
pow — Espressione 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(-1, 20); // 1
echo pow(0, 0); // 1
echo pow(-1, 5.5); // errore
?>
Avviso
Nel PHP 4.0.6 e precedenti, pow() restituiva sempre un float e non generava alcun errore.
chris at ocportal dot com ¶
1 year ago
gilthansREMOVEME at gmail dot com ¶
6 years ago
Note that pow(0, 0) equals to 1 although mathematically this is undefined.
