|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-11-25 14:52 UTC] sniper@php.net
[2003-11-25 16:06 UTC] adam at trachtenberg dot com
[2003-11-28 23:51 UTC] sniper@php.net
[2003-11-29 12:20 UTC] adam at trachtenberg dot com
[2003-12-01 11:48 UTC] sniper@php.net
[2003-12-01 13:07 UTC] adam at trachtenberg dot com
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 29 23:00:01 2025 UTC |
Description: ------------ Concatenating objects that define a __toString() method using the "." operator causes a bus error. Reproduce code: --------------- class foo { function __toString() { return "foo"; } } $foo = new foo; echo $foo . "\n"; Expected result: ---------------- foo Actual result: -------------- Bus error.