summaryrefslogtreecommitdiff
path: root/Zend/tests/bug54910.phpt
blob: c8317a1708270739ef8d1b37d777733560845e2a (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
--TEST--
Bug #54910 (Crash when calling call_user_func with unknown function name)
--FILE--
<?php
class A {
    public function __call($method, $args) {
        if (stripos($method, 'get') === 0) {
            return $this->get();
        }
        die("No such method - '$method'\n");
    }

    protected function get() {
        $class = get_class($this);
        $call = array($class, 'noSuchMethod');

        if (is_callable($call)) {
            call_user_func($call);
        }
    }
}

class B extends A {}

$input = new B();
echo $input->getEmail();
?>
--EXPECT--
No such method - 'noSuchMethod'