summaryrefslogtreecommitdiff
path: root/Zend/tests/indirect_method_call_005.phpt
blob: d3e2de2c8445705a60cb87f19713d05583f36287 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--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)