php-src/ext/reflection/tests/bug74673.phpt
2020-02-03 22:52:20 +01:00

23 lines
405 B
PHP

--TEST--
Bug #74673 (Segfault when cast Reflection object to string with undefined constant)
--FILE--
<?php
class A
{
public function method($test = PHP_SELF + 1)
{
}
}
$class = new ReflectionClass('A');
echo $class;
?>
--EXPECTF--
Fatal error: Uncaught Error: Undefined constant 'PHP_SELF' in %s:%d
Stack trace:
#0 %s(%d): ReflectionClass->__toString()
#1 {main}
thrown in %s on line %d