mirror of
https://github.com/php/php-src.git
synced 2024-12-20 15:30:38 +08:00
31 lines
422 B
Plaintext
31 lines
422 B
Plaintext
|
--TEST--
|
||
|
Bug #39721 (Runtime inheritance causes data corruption)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
class test2 {
|
||
|
private static $instances = 0;
|
||
|
public $instance;
|
||
|
|
||
|
public function __construct() {
|
||
|
$this->instance = ++self::$instances;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
$foo = new test2();
|
||
|
|
||
|
if (is_object($foo)) {
|
||
|
class test2_child extends test2 {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$child = new test2_child();
|
||
|
|
||
|
echo $foo->instance . "\n";
|
||
|
echo $child->instance . "\n";
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
1
|
||
|
2
|