mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
17 lines
277 B
PHP
17 lines
277 B
PHP
--TEST--
|
|
Testing array dereferencing from instance with ArrayObject
|
|
--FILE--
|
|
<?php
|
|
|
|
class foo extends ArrayObject {
|
|
public function __construct($arr) {
|
|
parent::__construct($arr);
|
|
}
|
|
}
|
|
|
|
var_dump( (new foo( array(1, array(4, 5), 3) ))[1][0] ); // int(4)
|
|
|
|
?>
|
|
--EXPECT--
|
|
int(4)
|