mirror of
https://github.com/php/php-src.git
synced 2026-04-17 21:11:02 +02:00
Add deprecated _ZendTestClass::__toString() method to preserve an existing test. ReflectionType::__toString() will now return a complete representation of the type, as it should have originally. Users that relied on nullability being absent should have been pushed to ReflectionNamedType::getName() by the deprecation of ReflectionType::__toString() in PHP 7.1 / PHP 7.4.
24 lines
623 B
PHP
24 lines
623 B
PHP
--TEST--
|
|
Bug #78239: Deprecation notice during string conversion converted to exception hangs
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("zend-test")) die("skip requires zend-test extension"); ?>
|
|
--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 ?: "";
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught ErrorException: Function _ZendTestClass::__toString() is deprecated in %s:%d
|
|
Stack trace:
|
|
#0 %s(%d): handleError(%s)
|
|
#1 {main}
|
|
thrown in %s on line %d
|