|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-09-16 09:07 UTC] tv at net4you dot bg
[2005-09-16 10:01 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 23:00:01 2025 UTC |
Description: ------------ executing this code return an unexpected result. Changing echo "Error"; to return "Error"; fix the problem put in larger functions sometimes we need to print output. Reproduce code: --------------- <?php print "test". Test()."test"; function Test() { echo "Error"; } ?> Expected result: ---------------- testErrortest Actual result: -------------- Errortesttest