php-src/Zend/tests/indirect_method_call_005.phpt
2020-02-03 22:52:20 +01:00

17 lines
289 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)