call_user_func_007.phpt 328 B

123456789101112131415161718
  1. --TEST--
  2. call_user_func() should not use FUNC_ARG fetches
  3. --FILE--
  4. <?php
  5. function foo(&$ref) { $ref = 24; }
  6. $a = [];
  7. call_user_func('foo', $a[0][0]);
  8. var_dump($a);
  9. ?>
  10. --EXPECTF--
  11. Notice: Undefined offset: 0 in %s on line %d
  12. Warning: Parameter 1 to foo() expected to be a reference, value given in %s on line %d
  13. array(0) {
  14. }