ID:               16898
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Feedback
+Status:           No Feedback
 Bug Type:         *Math Functions
 Operating System: Linux
 PHP Version:      4.2.0
 New Comment:

No feedback was provided for this bug for over a month, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".


Previous Comments:
------------------------------------------------------------------------

[2002-05-06 22:20:34] [EMAIL PROTECTED]

This is a duplicate of 16944 which has been fixed.

------------------------------------------------------------------------

[2002-05-06 22:18:14] [EMAIL PROTECTED]

Further to my last post, here is the code in question:

function NUM_HOLDS($level_hull)
{
  global $level_factor;
  return round(pow($level_factor, $level_hull) * 100);
}

as stated in the previous post, $level_factor = 2 and $level_hull = 0;

It also occurs on this line:

$shipspeed = pow($level_factor, $playerinfo[engines]);

Could it be because in my case, I am using an associative array as the
second value?

------------------------------------------------------------------------

[2002-05-06 22:12:18] [EMAIL PROTECTED]

I have the same problem, but on windows xp.
The values are being selected back from mysql via ADODB. The values
being used (in variables) are 2 and 0 eg pow($value1,$value2) where
value1 = 2 and value2 = 0

------------------------------------------------------------------------

[2002-04-29 06:28:21] [EMAIL PROTECTED]

PHP automagically tries to convert the passed data to a number
representation.

Please paste the exact values you are using to call this pow()

------------------------------------------------------------------------

[2002-04-29 06:17:23] [EMAIL PROTECTED]

$result=mysql_query("SELECT id, cdate FROM newspaper WHERE
path='".substr($a, strrpos($a, "/")+1, strlen($a))."'") or die
(mysql_error());
$rec=mysql_fetch_array($result);


$e=pow(2, $rec[id]); //Warning!


it's looks like what pow() function can't convert $rec[id] variable
from string to integer automatically.
Using 

$rec[id]=stettype($rec[id], "int");

helps

------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=16898&edit=1

Reply via email to