summaryrefslogtreecommitdiff
path: root/Zend/tests/bug69167.phpt
blob: cae3528406ad4d6d570a0effa3f96d6946333061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Bug #69167 (call_user_func does not support references anymore)
--FILE--
<?php
function l($m) {
	    echo $m . "\n";
}

$cb = 'l';
call_user_func($cb, 'hi');

$cb2 = &$cb;
call_user_func($cb2, 'hi2');
?>
--EXPECT--
hi
hi2