mirror of
https://github.com/php/php-src.git
synced 2024-11-28 20:34:29 +08:00
16 lines
278 B
Plaintext
16 lines
278 B
Plaintext
|
--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
|