ID:               22211
 Comment by:       fab at blueshoes dot org
 Reported By:      wayne at ptaff dot ca
 Status:           Open
 Bug Type:         Class/Object related
 Operating System: Linux
 PHP Version:      4.3.0
 New Comment:

i have something similar, i really think it's the same problem.

pseudo code (not reproducable this way):

class c {
  function f($a, $b=null, $c=TRUE) {
    var_dump($a);
    var_dump($b);
    var_dump($c);
  }
}

$someB = null;
$someC =& new c();
$someC->f('foo', null, FALSE);

the problem is that the third param ALWAYS turns out to be TRUE. no
matter how many times i reload.

when i remove the 2nd param from the method definition and method call
then it works. 

system: win2000 php4.3. the code worked before in php4.2.2

really strange. but i'm not blind. should i try to provide some small
peace of code that reproduces it?

greetings and thanks.
fab


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

[2003-02-17 02:32:08] [EMAIL PROTECTED]

Please, stop spamming other bug report with your
bogus comments. Keep them here.



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

[2003-02-13 13:03:11] wayne at ptaff dot ca

Here is a strange bug affecting 4.3.0 (with the same code, 4.2.3 works
fine):

class foo {
  // constructor, etc.

  function myecho($string1, $string2) {
    echo "String 1: " . $string1 . "\n";
    echo "String 2: " . $string2 . "\n";
  }
};

$bar = new foo();
$bar->myecho("apple", "orange");

Will output one of these 3 possibilities, at random (or so it seems:)

String 1: apple
String 2: orange  

String 1: orange
String 2:

String 1:
String 2:

Weird, eh? and rerunning the same code does not always give the same
results. 

Reposted from bug#21886, and not related to sessions in any way.

That nasty problem keeps me from upgrading...

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


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

Reply via email to