mirror of
https://github.com/php/php-src.git
synced 2024-12-18 14:30:35 +08:00
15 lines
227 B
Plaintext
15 lines
227 B
Plaintext
|
--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
|