summaryrefslogtreecommitdiff
path: root/Zend/tests/call_static_007.phpt
blob: 00ae448b9a59ba3602693e7a693c46d3fdcf7827 (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
28
29
30
31
32
33
34
--TEST--
Testing __call and __callstatic
--FILE--
<?php

class a {
    public function __call($a, $b) {
        print "__call: ". $a ."\n";
    }
    static public function __callStatic($a, $b) {
        print "__callstatic: ". $a ."\n";
    }
    public function baz() {
        self::Bar();
    }
}


$a = new a;

$b = 'Test';
$a::$b();
$a->$b();

$a->baz();

a::Foo();

?>
--EXPECT--
__callstatic: Test
__call: Test
__call: Bar
__callstatic: Foo