summaryrefslogtreecommitdiff
path: root/Zend/tests/bug46409.phpt
blob: 1986e88b109d65fecbfacb07c9d510a14f8d4230 (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
--TEST--
Bug #46409 (__invoke method called outside of object context when using array_map)
--FILE--
<?php
class Callback {
    protected $val = 'hello, world';
    
    public function __invoke() {
        return $this->val;
    }
}

$cb = new Callback();
echo $cb(),"\n";
$a = array(1, 2);
$b = array_map($cb, $a);
print_r($b);
?>
--EXPECT--
hello, world
Array
(
    [0] => hello, world
    [1] => hello, world
)