php-src/Zend/tests/bug39445.phpt
2020-02-03 22:52:20 +01:00

17 lines
297 B
PHP

--TEST--
Bug #39445 (Calling debug_backtrace() in the __toString() function produces a crash)
--FILE--
<?php
class test {
public function __toString() {
debug_backtrace();
return 'lowercase';
}
}
$test = new test();
echo strtoupper($test);
?>
--EXPECT--
LOWERCASE