summaryrefslogtreecommitdiff
path: root/Zend/tests/indirect_call_from_constant.phpt
blob: 4e7374aee288fd7ea41b2d4abe5145664cb8f6e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
--TEST--
Indirect call with constants.
--FILE--
<?php

class Test
{
    public static function method()
    {
        echo "Method called!\n";
    }
}

['Test', 'method']();

'Test::method'();

(['Test', 'method'])();

('Test::method')();

?>
--EXPECT--
Method called!
Method called!
Method called!
Method called!