<?php
class Foo {
public function __toString() {
$exception = new Exception('foo');
trigger_error((string) $exception, E_USER_ERROR);
}
}
$foo = new Foo;
echo $foo;
Deprecated: Passing E_USER_ERROR to trigger_error() is deprecated since 8.4, throw an exception or call exit with a string message instead in /in/v0gt2 on line 6
Fatal error: Exception: foo in /in/v0gt2:5
Stack trace:
#0 /in/v0gt2(12): Foo->__toString()
#1 {main} in /in/v0gt2 on line 6
Process exited with code 255.
Fatal error: Exception: foo in /in/v0gt2:5
Stack trace:
#0 /in/v0gt2(12): Foo->__toString()
#1 {main} in /in/v0gt2 on line 6
Process exited with code 255.
Fatal error: exception 'Exception' with message 'foo' in /in/v0gt2:5
Stack trace:
#0 /in/v0gt2(12): Foo->__toString()
#1 {main} in /in/v0gt2 on line 6
Process exited with code 255.
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
Fatal error: Object id #2 in /in/v0gt2 on line 6
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/v0gt2 on line 4
Process exited with code 255.
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/v0gt2 on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/v0gt2 on line 4
Process exited with code 255.