1
0
mirror of https://github.com/php/php-src.git synced 2026-04-05 07:02:33 +02:00
Files
archived-php-src/Zend/tests/indirect_method_call_005.phpt

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)