php-src/Zend/tests/bug69167.phpt
2020-02-03 22:52:20 +01:00

18 lines
234 B
PHP

--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