Re: __toString()

php.internals

Adam Maccabee Trachtenberg

22 years ago
On Sun, 14 Dec 2003, Sebastian Bergmann wrote:
> How is it supported by "print" when > > print $defect->thrownException() > > does not work but the object returned from thrownException() has a > __toString() method?
That's part of my problem with __toString, there's a difference between these two: print $defect->thrownException(); print $defect->thrownException() . "\n"; I can't remember how things finally ended up, but originally the first one worked while the second didn't. I advocated adding support for the second, but Andi said there were technical problems. Maybe we ended up also disabling the first because it was confusing. -adam
-- adam@trachtenberg.com