php-src/Zend/tests/bug78239.phpt

24 lines
548 B
Plaintext
Raw Normal View History

2019-07-03 08:59:26 +00:00
--TEST--
Bug #78239: Deprecation notice during string conversion converted to exception hangs
--EXTENSIONS--
zend_test
2019-07-03 08:59:26 +00:00
--FILE--
<?php
function handleError($level, $message, $file = '', $line = 0, $context = [])
{
throw new ErrorException($message, 0, $level, $file, $line);
}
set_error_handler('handleError');
$r = new _ZendTestClass;
(string)$r ?: "";
2019-07-03 08:59:26 +00:00
?>
--EXPECTF--
Fatal error: Uncaught ErrorException: Method _ZendTestClass::__toString() is deprecated in %s:%d
2019-07-03 08:59:26 +00:00
Stack trace:
#0 %s(%d): handleError(%s)
#1 {main}
thrown in %s on line %d