From:             [EMAIL PROTECTED]
Operating system: windows 2000
PHP version:      4.3.0
PHP Bug Type:     Scripting Engine problem
Bug description:  mistake of operator "if"

can't  work a script
  $r=0;
  if ($r=1) {$a=1;} //comparison on equal
  else {$a=0;}
  print "Result=$a"; 
i see always "Result=1" 
but can work a script
  $r=0;
  if ($r==1) {$a=1;} //comparison on identical
  else {$a=0;}
  print "Result=$a";
i did see manual of PHP what must work both ways


-- 
Edit bug report at http://bugs.php.net/?id=21979&edit=1
-- 
Try a CVS snapshot:         http://bugs.php.net/fix.php?id=21979&r=trysnapshot
Fixed in CVS:               http://bugs.php.net/fix.php?id=21979&r=fixedcvs
Fixed in release:           http://bugs.php.net/fix.php?id=21979&r=alreadyfixed
Need backtrace:             http://bugs.php.net/fix.php?id=21979&r=needtrace
Try newer version:          http://bugs.php.net/fix.php?id=21979&r=oldversion
Not developer issue:        http://bugs.php.net/fix.php?id=21979&r=support
Expected behavior:          http://bugs.php.net/fix.php?id=21979&r=notwrong
Not enough info:            http://bugs.php.net/fix.php?id=21979&r=notenoughinfo
Submitted twice:            http://bugs.php.net/fix.php?id=21979&r=submittedtwice
register_globals:           http://bugs.php.net/fix.php?id=21979&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=21979&r=php3
Daylight Savings:           http://bugs.php.net/fix.php?id=21979&r=dst
IIS Stability:              http://bugs.php.net/fix.php?id=21979&r=isapi
Install GNU Sed:            http://bugs.php.net/fix.php?id=21979&r=gnused

Reply via email to