mirror of
https://github.com/php/php-src.git
synced 2024-12-12 19:33:31 +08:00
a541bb8078
- Update README.PARAMETER_PARSING_API
67 lines
931 B
PHP
67 lines
931 B
PHP
--TEST--
|
|
Bug #41692 (ArrayObject shows weird behaviour in respect to inheritance)
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("spl")) die("skip"); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
class Bar extends ArrayObject {
|
|
private $foo = array( 1, 2, 3 );
|
|
function __construct()
|
|
{
|
|
parent::__construct($this->foo);
|
|
}
|
|
}
|
|
|
|
$foo = new Bar();
|
|
var_dump($foo);
|
|
$foo['foo'] = 23;
|
|
|
|
$bar = new Bar();
|
|
var_dump($bar);
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
object(Bar)#%d (2) {
|
|
["foo":"Bar":private]=>
|
|
array(3) {
|
|
[0]=>
|
|
int(1)
|
|
[1]=>
|
|
int(2)
|
|
[2]=>
|
|
int(3)
|
|
}
|
|
["storage":"ArrayObject":private]=>
|
|
array(3) {
|
|
[0]=>
|
|
int(1)
|
|
[1]=>
|
|
int(2)
|
|
[2]=>
|
|
int(3)
|
|
}
|
|
}
|
|
object(Bar)#%d (2) {
|
|
["foo":"Bar":private]=>
|
|
array(3) {
|
|
[0]=>
|
|
int(1)
|
|
[1]=>
|
|
int(2)
|
|
[2]=>
|
|
int(3)
|
|
}
|
|
["storage":"ArrayObject":private]=>
|
|
array(3) {
|
|
[0]=>
|
|
int(1)
|
|
[1]=>
|
|
int(2)
|
|
[2]=>
|
|
int(3)
|
|
}
|
|
}
|
|
Done
|