php-src/Zend/tests/global_to_string_exception.phpt

15 lines
227 B
Plaintext
Raw Normal View History

--TEST--
To string conversion failure in global
--FILE--
<?php
try {
global ${new stdClass};
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
Object of class stdClass could not be converted to string