ID:               31458
 User updated by:  falk at brockerhoff dot org
 Reported By:      falk at brockerhoff dot org
-Status:           Bogus
+Status:           Closed
 Bug Type:         Unknown/Other Function
 Operating System: FreeBSD 5.3
 PHP Version:      4.3.10
 New Comment:

Oh, it's not a bug, it's a feature:

http://www.php.net/manual/en/language.operators.comparison.php


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

[2005-01-09 21:58:39] [EMAIL PROTECTED]

Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

Use === to compare variables of different types and read the
documentation about type juggling.

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

[2005-01-09 21:51:53] falk at brockerhoff dot org

Description:
------------
I got a strange problem while comparing a numeric while with the string
"%". Using the numeric value 0 and the string "%" in an if-statement
results with true!?



Reproduce code:
---------------
$foo = '%';
$bar = 0;

if ($foo == $var)
{
  echo "what the hell is going on?!\n";
}

$foo = '%';
$bar = '0';

if ($foo == $var)
{
  echo "what the hell is going on?!\n";
}




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


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

Reply via email to