summaryrefslogtreecommitdiff
path: root/Zend/tests/call_with_refs.phpt
blob: 84c4edfc2095082f9c3f13391221f92c4a38c91b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Check call to non-ref function with call-time refs
--FILE--
<?php
function my_errorhandler($errno,$errormsg) {
  global $my_var;
  $my_var=0x12345;
  echo $errormsg."\n";
  return true;
}
$oldhandler = set_error_handler("my_errorhandler");
$my_var = str_repeat("A",64);
$data = call_user_func_array("substr_replace",array(&$my_var, new StdClass(),1));
echo "OK!";
--EXPECT--	
Object of class stdClass could not be converted to string
OK!