Why it’s impossible to throw exception from __toString()?
class a
{
public function __toString()
{
throw new Exception();
}
}
$a = new a();
echo $a;
the code above produces this:
Fatal error: Method a::__toString() must not throw an exception in /var/www/localhost/htdocs/index.php on line 12
I was pointed to http://php.net/manual/en/migration52.incompatible.php where this behavior is described, but why? Any reasons to do that?
May be anyone here knows this?
At bug tracker php-dev-team as usual says nothing but see manual: http://bugs.php.net/50699
After a couple searches I found this, which says:
The Johannes referenced above is the PHP 5.3 Release Manager, so it’s probably as “official” an explanation as you might find as to why PHP behaves this way.
The section goes on to mention:
So not all is lost in terms of error reporting within
__toString().