mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
16 lines
278 B
PHP
16 lines
278 B
PHP
--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
|