You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
278 B

--TEST--
Bug #47880 (crashes in call_user_func_array())
--FILE--
<?php
class bomb {
static function go($n) {
$backtrace = debug_backtrace(false);
$backtrace[1]['args'][1] = 'bomb';
}
}
call_user_func_array(array('bomb', 'go'), array(0));
echo "ok\n";
?>
--EXPECT--
ok