|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-03-24 08:52 UTC] scottmac@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 13 02:00:01 2025 UTC |
Description: ------------ order is wrong Reproduce code: --------------- echo '1'.foo().'3'; function foo() { echo '2'; } Expected result: ---------------- 123 Actual result: -------------- 213