summaryrefslogtreecommitdiff
path: root/Zend/tests/call_user_func_007.phpt
blob: 08083e71a946140f8d96b236b96eedabc76cad54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
call_user_func() should not use FUNC_ARG fetches
--FILE--
<?php

function foo(&$ref) { $ref = 24; }

$a = [];
call_user_func('foo', $a[0][0]);
var_dump($a);

?>
--EXPECTF--
Warning: Undefined array key 0 in %s on line %d

Warning: Trying to access array offset on value of type null in %s on line %d

Warning: foo(): Argument #1 ($ref) must be passed by reference, value given in %s on line %d
array(0) {
}