mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
20 lines
357 B
PHP
Executable File
20 lines
357 B
PHP
Executable File
--TEST--
|
|
Bug #43128 (Very long class name causes segfault)
|
|
--INI--
|
|
memory_limit=128000000
|
|
--FILE--
|
|
<?php
|
|
|
|
$a = str_repeat("a", 10 * 1024 * 1024);
|
|
|
|
eval("class $a {}");
|
|
|
|
# call_user_func($a); // Warning
|
|
# $a->$a(); // Fatal error
|
|
|
|
if ($a instanceof $a); // Segmentation fault
|
|
new $a; // Segmentation fault
|
|
echo "ok\n";
|
|
--EXPECT--
|
|
ok
|