Mantis - Quercus
|
|||||
Viewing Issue Advanced Details | |||||
|
|||||
ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
3213 | minor | always | 12-30-08 15:36 | 01-04-09 11:32 | |
|
|||||
Reporter: | koreth | Platform: | |||
Assigned To: | ferg | OS: | |||
Priority: | normal | OS Version: | |||
Status: | closed | Product Version: | 4.0.0 | ||
Product Build: | Resolution: | fixed | |||
Projection: | none | ||||
ETA: | none | Fixed in Version: | 4.0.0 | ||
|
|||||
Summary: | 0003213: Subclasses don't get separate copies of superclass method statics | ||||
Description: |
<?php class P { public function setStatic($x) { static $var = null; if (!$var) { $var = $x; } print $var; } } class C1 extends P { public function test1() { $this->setStatic('a'); } } class C2 extends P { public function test2() { $this->setStatic('b'); } } $o1 = new C1; $o2 = new C2; $o1->test1(); $o2->test2(); Regular PHP prints "ab". Quercus prints "aa". |
||||
Steps To Reproduce: | |||||
Additional Information: | |||||
Relationships | |||||
Attached Files: |
Notes | |||||
|
|||||
|
|