|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-04-02 02:01 UTC] amt@php.net
[2004-04-02 03:13 UTC] derick@php.net
[2004-04-02 03:19 UTC] steph dot fox at virgin dot net
[2004-04-03 08:16 UTC] steph dot fox at virgin dot net
[2004-04-03 12:24 UTC] andi@php.net
[2006-01-06 15:35 UTC] sniper@php.net
[2006-03-18 10:55 UTC] nohn@php.net
[2006-03-18 10:57 UTC] nohn@php.net
[2006-08-24 16:46 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 28 20:00:01 2025 UTC |
Description: ------------ __toString() works more or less as currently advertised, until I try to concat it.. Reproduce code: --------------- <?php class Foo { function __toString() { return "Blah"; } } $obj = new Foo(); echo $obj."\n"; ?> Expected result: ---------------- Blah Actual result: -------------- Object id #1