Date: 01/10/01
- Next message: Stig Venaas: "Re: [PHP-DEV] PHP4: php_module holds memory to long !"
- Previous message: Cynic: "Re: [PHP-DEV] 4.0.4pl1 RC2 rolled"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
ID: 8495
User Update by: mark <email protected>
Old-Status: Feedback
Status: Open
Bug Type: Variables related
Description: Bug #6818 continued
Taken from bug 6818:
<?
$variable = 0;
if ($variable == "some_string")
{
print "This must be a bug?! Variable set as $variable.\n\n<br>";
$variable++;
if ($variable != "some_string")
{
print "But with variable set as $variable it works fine.\n\n";
}
}
else
{
print "This works as I expected.\n\n";
}
?>
Previous Comments:
---------------------------------------------------------------------------
[2001-01-09 10:27:13] stas <email protected>
Could you please describe your problem and give an example
of faulty code?
---------------------------------------------------------------------------
[2000-12-30 13:51:06] mark <email protected>
In response to (the closed) bug #6818 (I can't reopen it):
Using === instead of == is not a solution in my opinion:
- it's not compatible with older code (php3)
- it's still a bug: comparing a variable with value 0 with a string should always return 'false', regardless the type.
---------------------------------------------------------------------------
Full Bug description available at: http://bugs.php.net/?id=8495
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Stig Venaas: "Re: [PHP-DEV] PHP4: php_module holds memory to long !"
- Previous message: Cynic: "Re: [PHP-DEV] 4.0.4pl1 RC2 rolled"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

