ID:               19980
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
 Status:           Bogus
 Bug Type:         Scripting Engine problem
 Operating System: Win2000
 PHP Version:      4.2.3
 New Comment:

This came up on ZE2 list also, people seem to have a need for this.
Please participate there.


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

[2002-10-18 15:43:16] [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


http://www.php.net/manual/en/keyword.paamayim-nekudotayim.php

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

[2002-10-18 10:31:45] [EMAIL PROTECTED]

AyByBn

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

[2002-10-18 10:26:31] [EMAIL PROTECTED]

And the output is?

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

[2002-10-18 10:07:33] [EMAIL PROTECTED]

when calling B::procSave from $a->procSave() the $this keeps linked to
$a.

The code:
<?php

class A {
  function A() {}
  function procSave() {
    echo "A";
    if(isset($this)) echo "y"; else echo "n";
    B::procSave();
  }
}

class B {
  function B() {}
  function procSave() {
    echo "B";
    if(isset($this)) echo "y"; else echo "n";
  }
}

$a = new A();
$b = new B();

$a->procSave();
B::procSave();

?>



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


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

Reply via email to